We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d07601d commit d563063Copy full SHA for d563063
lib/reline/line_editor.rb
@@ -1330,7 +1330,7 @@ def finish
1330
end
1331
1332
1333
- private def search_history(key)
+ private def incremental_search_history(key)
1334
unless @history_pointer
1335
if @is_multiline
1336
@line_backup_in_history = whole_buffer
@@ -1412,12 +1412,12 @@ def finish
1412
1413
1414
private def ed_search_prev_history(key)
1415
- search_history(key)
+ incremental_search_history(key)
1416
1417
alias_method :reverse_search_history, :ed_search_prev_history
1418
1419
private def ed_search_next_history(key)
1420
1421
1422
alias_method :forward_search_history, :ed_search_next_history
1423
0 commit comments