diff options
author | anekos | 2009-02-07 11:16:32 +0000 |
---|---|---|
committer | anekos | 2009-02-07 11:16:32 +0000 |
commit | cff93cc7e7a0645e38470ed125db829789491864 (patch) | |
tree | ab2aa01b9b8d5a64eee42cb8c980dde7936fc4b9 /browser_object.js | |
parent | 9013265f7bd0d0dc9fcb2be3c994be64eed5f4a4 (diff) | |
download | vimperator-plugins-cff93cc7e7a0645e38470ed125db829789491864.tar.bz2 |
PLUGIN_INFO 対応
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@29675 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'browser_object.js')
-rw-r--r-- | browser_object.js | 85 |
1 files changed, 56 insertions, 29 deletions
diff --git a/browser_object.js b/browser_object.js index 32f525c..2ec8b12 100644 --- a/browser_object.js +++ b/browser_object.js @@ -1,37 +1,64 @@ +// PLUGIN_INFO {{{
+let PLUGIN_INFO =
+<VimperatorPlugin>
+ <name>{NAME}</name>
+ <description>Map behave like text-object</description>
+ <version>0.5</version>
+ <author mail="trapezoid.g@gmail.com" homepage="http://unsigned.g.hatena.ne.jp/Trapezoid">Trapezoid</author>
+ <license>New BSD License</license>
+ <updateURL>http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/browser_object.js</updateURL>
+ <minVersion>2.0pre</minVersion>
+ <maxVersion>2.0pre</maxVersion>
+ <detail><![CDATA[
+ == Variables ==
+ g:browser_object_prefix:
+ default: ''
+ usage: let g:browser_object_prefix = ','
+ == Mappings ==
+ dd:
+ Delete current tab (when prefix is '' only)
+ {motion}/:
+ {motion} pattern matched tabs
+ {motion}{scope}{target}:
+ Motions:
+ d:
+ Delete
+ r:
+ Reload
+ y:
+ Yank
+ e:
+ Set Pin
+ E:
+ Unset Pin
+ Scopes:
+ l:
+ Left
+ r:
+ Right
+ a:
+ All
+ c:
+ Current
+ o:
+ Other
+ s:
+ Same host
+ p:
+ Pinned
+ Target:
+ t:
+ Tabs
+ ]]></detail>
+</VimperatorPlugin>;
+// }}}
+
// Vimperator plugin: 'Map behave like text-object'
// Version: 0.5
// Last Change: 26-Dec-2008. Jan 2008
// License: New BSD License
// Maintainer: Trapezoid <trapezoid.g@gmail.com> - http://unsigned.g.hatena.ne.jp/Trapezoid
-//
-// Map behave like text-object for Vimperator
-//
-// Variables:
-// g:browser_object_prefix:
-// default: ''
-// usage: let g:browser_object_prefix = ','
-// Mappings:
-// 'dd'
-// Delete current tab (when prefix is '' only)
-// '{motion}/'
-// {motion} pattern matched tabs
-// '{motion}{scope}{target}'
-// Motions:
-// 'd' : Delete
-// 'r' : Reload
-// 'y' : Yank
-// 'e' : Set Pin
-// 'E' : Unset Pin
-// Scopes:
-// 'l' : Left
-// 'r' : Right
-// 'a' : All
-// 'c' : Current
-// 'o' : Other
-// 's' : Same host
-// 'p' : Pinned
-// Target:
-// 't' : Tabs
+
(function(){
var XMigemoCore, XMigemoTextUtils;
try{
|