diff options
-rw-r--r-- | history-search-backward.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/history-search-backward.js b/history-search-backward.js index 4444812..b3f3678 100644 --- a/history-search-backward.js +++ b/history-search-backward.js @@ -69,9 +69,9 @@ liberator.globalVariables.history_search_backward_map = ['<C-r>']; commandline.input('bck-i-search: ', function(str) { try { - liberator.echo(liberator.execute(str)); + liberator.execute(str); } catch(e) {}; - this.close(); + modes.pop(); return; }, { completer: function(context) { |