diff options
author | anekos | 2010-07-31 05:12:53 +0000 |
---|---|---|
committer | anekos | 2010-07-31 05:12:53 +0000 |
commit | 5f58d87219ec58d830ad478bc977c958d81f0872 (patch) | |
tree | fb98cc8036c8700c896d58ed64fb6bb035600273 | |
parent | 210ff71279ab6be279883e806c7fabb2a716a075 (diff) | |
download | vimperator-plugins-5f58d87219ec58d830ad478bc977c958d81f0872.tar.bz2 |
本文でも検索できるように、@ はなかったことにする
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@38068 d0d07461-0603-4401-acd4-de1884942a52
-rwxr-xr-x | twittperator.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/twittperator.js b/twittperator.js index f0a7f8e..02103a2 100755 --- a/twittperator.js +++ b/twittperator.js @@ -1414,6 +1414,8 @@ function setup() { // {{{ ["@" + s.user.screen_name+"#" + s.id + " ", s]); } + // 本文でも検索できるように、@ はなかったことにする + context.filter = context.filter.replace(/^@/, ''); context.completions = list; context.filters = [statusObjectFilter]; context.incomplete = false; |