diff options
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)]); |