diff options
author | anekos | 2010-07-16 08:48:21 +0000 |
---|---|---|
committer | anekos | 2010-07-16 08:48:21 +0000 |
commit | a51e9093f269f788253fc3cf76a23f5936d155cc (patch) | |
tree | 967cd1986d4a94be667a5240998a111523723e6a /readcatlater.js | |
parent | 57c7592c6363c4170d02526b6cda82bcd3da44c7 (diff) | |
download | vimperator-plugins-a51e9093f269f788253fc3cf76a23f5936d155cc.tar.bz2 |
説明をフィルタリング対象に
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@37944 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'readcatlater.js')
-rw-r--r-- | readcatlater.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/readcatlater.js b/readcatlater.js index 065ab1b..90c6702 100644 --- a/readcatlater.js +++ b/readcatlater.js @@ -38,7 +38,7 @@ let PLUGIN_INFO = <name>Read Cat Later</name> <description>Read it later</description> <description lang="ja">後で読む</description> - <version>1.1.1</version> + <version>1.1.2</version> <author mail="anekos@snca.net" homepage="http://d.hatena.ne.jp/nokturnalmortum/">anekos</author> <license>new BSD License (Please read the source code comments of this plugin)</license> <license lang="ja">修正BSDライセンス (ソースコードのコメントを参照してください)</license> @@ -247,6 +247,7 @@ let PLUGIN_INFO = function completer (context, arg) { context.title = ['URL', 'Title']; + context.filters = [CompletionContext.Filter.textDescription]; context.completions = RCL_Bookmarks(context.filter). filter(function (it) it.id). map(function (it) [it.URI, bookmarks.getItemTitle(it.id)]); |