diff options
author | anekos | 2009-08-27 09:02:20 +0000 |
---|---|---|
committer | anekos | 2009-08-27 09:02:20 +0000 |
commit | 025f61b064b016851cb8a4fe652861237a4a7b2d (patch) | |
tree | bb0045813e009ca16b4980c9b18100bc3adb1ccc /auto_source.js | |
parent | 76493bca826c8a59ad252fe90c228e4f1e12997a (diff) | |
download | vimperator-plugins-025f61b064b016851cb8a4fe652861237a4a7b2d.tar.bz2 |
Follow HEAD
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@35093 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'auto_source.js')
-rw-r--r-- | auto_source.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/auto_source.js b/auto_source.js index b4524f0..7c69176 100644 --- a/auto_source.js +++ b/auto_source.js @@ -38,7 +38,7 @@ let PLUGIN_INFO = <name>Auto Source</name> <description>Sourcing automatically when the specified file is modified.</description> <description lang="ja">指定のファイルが変更されたら自動で :so する。</description> - <version>1.4.2</version> + <version>1.4.3</version> <author mail="anekos@snca.net" homepage="http://d.hatena.ne.jp/nokturnalmortum/">anekos</author> <minVersion>2.0pre</minVersion> <maxVersion>2.0pre</maxVersion> @@ -141,7 +141,7 @@ let PLUGIN_INFO = ['autoso[urce]', 'aso'], 'Sourcing automatically when the specified file is modified.', function (arg) { - (bang.bang ? killWatcher : startWatching)(expandPath(arg[0]), arg['-command'], arg['-force']); + (arg.bang ? killWatcher : startWatching)(expandPath(arg[0]), arg['-command'], arg['-force']); }, { bang: true, |