Código:
$("#texto").on('keydown', function (e) {
if ((e.ctrlKey==true && (e.which == '118' || e.which == '86')) || (e.which === 46) || (e.which === 8)) {
$(".clear-text").val('');
}
});


