Support backspace in incremental search

This commit is contained in:
aycabta 2019-10-16 02:55:45 +09:00
Родитель a5245c1658
Коммит 259601ab57
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1223,7 +1223,7 @@ class Reline::LineEditor
@cursor = @byte_pointer = 0
else
chr = key.is_a?(String) ? key : key.chr(Encoding::ASCII_8BIT)
if chr.match?(/[[:print:]]/)
if chr.match?(/[[:print:]]/) or key == "\C-h".ord or key == 127
searcher.resume(key)
else
if @history_pointer