diff options
author | anekos | 2010-07-30 14:34:31 +0000 |
---|---|---|
committer | anekos | 2010-07-30 14:34:31 +0000 |
commit | 8da8ef7d260f73fc9017019e36a0f8bc35323e2e (patch) | |
tree | fbf95e49cefb2add41b9593585d49e0c8771e49a | |
parent | ec4283317ba113f8745c2a71ea23e83f20d56ecf (diff) | |
download | vimperator-plugins-8da8ef7d260f73fc9017019e36a0f8bc35323e2e.tar.bz2 |
@で補完開始できないので修正
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@38060 d0d07461-0603-4401-acd4-de1884942a52
-rwxr-xr-x | twittperator.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/twittperator.js b/twittperator.js index 9601ea9..91e2947 100755 --- a/twittperator.js +++ b/twittperator.js @@ -1459,7 +1459,7 @@ function setup() { // {{{ targetContext = getting = null; } - let matches = context.filter.match(/@([A-Za-z0-9_]{1,15})$/); + let matches = context.filter.match(/@([A-Za-z0-9_]{0,15})$/); if (!matches) return; let list = []; |