diff options
author | anekos | 2010-12-08 21:18:25 +0900 |
---|---|---|
committer | anekos | 2010-12-08 21:36:30 +0900 |
commit | a1a9f7ae53b03fd397de357929024cc21b72d46f (patch) | |
tree | 0add7a191887f5618d1208aec73a893aadb2e0c8 /twittperator.js | |
parent | e82b73368ef819c9b53ab759df40b7014a44b087 (diff) | |
download | vimperator-plugins-a1a9f7ae53b03fd397de357929024cc21b72d46f.tar.bz2 |
サブコマンドの正規表現バグ修正
Diffstat (limited to 'twittperator.js')
-rw-r--r-- | twittperator.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/twittperator.js b/twittperator.js index ccf0556..d250d91 100644 --- a/twittperator.js +++ b/twittperator.js @@ -1892,7 +1892,7 @@ let PLUGIN_INFO = "^" + this.command.map(function(c) let (r = util.escapeRegex(c)) - (/^\W$/(c) ? r : r + " ") + (/^\W$/(c) ? r : r + "( |$)") ).join("|") ); }, |