aboutsummaryrefslogtreecommitdiffstats
path: root/edit-vimperator-files.js
diff options
context:
space:
mode:
authoranekos2010-10-06 17:00:42 +0000
committeranekos2010-10-06 17:00:42 +0000
commitee3e99e90f1a909c46013196b7351cf70973e0c4 (patch)
treee22e56850037bdfb031908484625d5a6dd2949aa /edit-vimperator-files.js
parent10e44a606124975d92328373dae570b4ff0b54fc (diff)
downloadvimperator-plugins-ee3e99e90f1a909c46013196b7351cf70973e0c4.tar.bz2
plugin_loader.js 前提になっていたのを修正
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@38552 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'edit-vimperator-files.js')
-rwxr-xr-xedit-vimperator-files.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/edit-vimperator-files.js b/edit-vimperator-files.js
index 64ac3be..70f87eb 100755
--- a/edit-vimperator-files.js
+++ b/edit-vimperator-files.js
@@ -38,7 +38,7 @@ let PLUGIN_INFO =
<name>Edit Vimperator File</name>
<description>Open vimperator files with text-editor.</description>
<description lang="ja">Vimperator 関連のファイルをエディタで開く</description>
- <version>1.1.0</version>
+ <version>1.1.1</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>
@@ -58,7 +58,7 @@ let PLUGIN_INFO =
// INFO {{{
let INFO =
<>
- <plugin name="EditVimperatorFile" version="1.0.0"
+ <plugin name="EditVimperatorFile" version="1.1.1"
href="http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/edit-vimperator-files.js"
summary="Open vimperator files with text-editor."
lang="en-US"
@@ -73,7 +73,7 @@ let INFO =
<description><p></p></description>
</item>
</plugin>
- <plugin name="EditVimperatorFile" version="1.0.0"
+ <plugin name="EditVimperatorFile" version="1.1.1"
href="http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/edit-vimperator-files.js"
summary="Vimperator 関連のファイルをエディタで開く"
lang="ja"
@@ -104,7 +104,7 @@ let INFO =
liberator.callFunctionInThread(null, io.run, io.expandPath(args.shift()), args, false);
}
- let dirs = toArray(liberator.globalVariables.plugin_loader_roots);
+ let dirs = toArray(liberator.globalVariables.plugin_loader_roots || []);
'HOME USERPROFILE HOMEDRIVE'.split(/\s/).forEach(
function (envName) dirs.push(services.get("environment").get(envName))