diff options
author | secondlife | 2009-03-03 16:24:55 +0000 |
---|---|---|
committer | secondlife | 2009-03-03 16:24:55 +0000 |
commit | 5f1ff8e04f173921b0fd4173bded1b22106ecad9 (patch) | |
tree | 71eea8a88cf943ed5e829304179758fad2db5e3c | |
parent | 74e70364324741ed9194e7e59cdc1938a914ffda (diff) | |
download | vimperator-plugins-5f1ff8e04f173921b0fd4173bded1b22106ecad9.tar.bz2 |
input からうまく抜けられない場合があったので修正
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@30755 d0d07461-0603-4401-acd4-de1884942a52
-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) { |