diff options
author | teramako | 2008-10-06 13:55:56 +0000 |
---|---|---|
committer | teramako | 2008-10-06 13:55:56 +0000 |
commit | 32e5d18b3d0c01036e45ab22bbab1ef0ac7ef216 (patch) | |
tree | 038d20524329d8798f498f13a0ccec18906e4f6e | |
parent | d874a1e3aee67c86a5057fe1fffcdb134a5fb5a9 (diff) | |
download | vimperator-plugins-32e5d18b3d0c01036e45ab22bbab1ef0ac7ef216.tar.bz2 |
vimp CVS Headに追従(bang[!])の仕様変更に対して)
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@20856 d0d07461-0603-4401-acd4-de1884942a52
-rw-r--r-- | copy.js | 3 | ||||
-rw-r--r-- | feedSomeKeys.js | 2 | ||||
-rw-r--r-- | lookupDictionary.js | 1 |
3 files changed, 5 insertions, 1 deletions
@@ -97,7 +97,8 @@ liberator.commands.addUserCommand(['copy'],'Copy to clipboard', } }); return [0, candidates]; - } + }, + bang: true } ); diff --git a/feedSomeKeys.js b/feedSomeKeys.js index d582148..9543a49 100644 --- a/feedSomeKeys.js +++ b/feedSomeKeys.js @@ -304,6 +304,8 @@ commands.addUserCommand(['feedmap','fmap'],'Feed Map a key sequence', } else { replaceUserMap(lhs,rhs,bang); } + },{ + bang: true } ); commands.addUserCommand(['feedmapclear','fmapc'],'Clear Feed Maps',destroy); diff --git a/lookupDictionary.js b/lookupDictionary.js index 918bd41..ebe69e2 100644 --- a/lookupDictionary.js +++ b/lookupDictionary.js @@ -184,6 +184,7 @@ SITE_DEFINITION.forEach(function(dictionary){ } return [0, candidates]; }, + bang: true } ); }); |