From 63458774610c20c75017abe4749732be4e413711 Mon Sep 17 00:00:00 2001
From: anekos
Date: Sat, 28 Feb 2009 23:02:14 +0000
Subject: source サブコマンドが補完に洗われてなかったのを修正
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@30631 d0d07461-0603-4401-acd4-de1884942a52
---
pluginManager.js | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
(limited to 'pluginManager.js')
diff --git a/pluginManager.js b/pluginManager.js
index 49af9cd..af9287d 100644
--- a/pluginManager.js
+++ b/pluginManager.js
@@ -4,7 +4,7 @@ var PLUGIN_INFO =
Manage Vimperator Plugins
Vimpeatorプラグインの管理
teramako
-0.6.1
+0.6.2
2.0pre
2.0pre
http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/pluginManager.js
@@ -878,9 +878,10 @@ commands.addUserCommand(['pluginmanager', 'pm'], 'Manage Vimperator plugins',
['install', 'Install the plugin of (current page or specified URL).'],
['list', 'List plugin information'],
['update', 'Update plugins'],
+ ['source', 'Show the source code'],
];
} else { // for sub-arguments
- if (/^(update|check|help|list)$/.test(args[0])) {
+ if (/^(update|check|help|list|source)$/.test(args[0])) {
context.title = ['PluginName', '[Version]Description'];
context.completions = getPlugins().map(function(plugin) [
plugin.name,
--
cgit v1.2.3