Changeset 29675

Show
Ignore:
Timestamp:
02/07/09 20:16:32 (4 years ago)
Author:
anekos
Message:

PLUGIN_INFO 対応

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/javascript/vimperator-plugins/trunk/browser_object.js

    r27441 r29675  
     1// PLUGIN_INFO {{{ 
     2let PLUGIN_INFO = 
     3<VimperatorPlugin> 
     4  <name>{NAME}</name> 
     5  <description>Map behave like text-object</description> 
     6  <version>0.5</version> 
     7  <author mail="trapezoid.g@gmail.com" homepage="http://unsigned.g.hatena.ne.jp/Trapezoid">Trapezoid</author> 
     8  <license>New BSD License</license> 
     9  <updateURL>http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/browser_object.js</updateURL> 
     10  <minVersion>2.0pre</minVersion> 
     11  <maxVersion>2.0pre</maxVersion> 
     12  <detail><![CDATA[ 
     13    == Variables == 
     14      g:browser_object_prefix: 
     15        default: '' 
     16        usage: let g:browser_object_prefix = ',' 
     17    == Mappings == 
     18      dd: 
     19        Delete current tab (when prefix is '' only) 
     20      {motion}/: 
     21        {motion} pattern matched tabs 
     22      {motion}{scope}{target}: 
     23        Motions: 
     24          d: 
     25           Delete 
     26          r: 
     27           Reload 
     28          y: 
     29           Yank 
     30          e: 
     31           Set Pin 
     32          E: 
     33           Unset Pin 
     34        Scopes: 
     35          l: 
     36           Left 
     37          r: 
     38           Right 
     39          a: 
     40           All 
     41          c: 
     42           Current 
     43          o: 
     44           Other 
     45          s: 
     46           Same host 
     47          p: 
     48            Pinned 
     49        Target: 
     50          t: 
     51            Tabs 
     52  ]]></detail> 
     53</VimperatorPlugin>; 
     54// }}} 
     55 
    156// Vimperator plugin: 'Map behave like text-object' 
    257// Version: 0.5 
     
    459// License: New BSD License 
    560// Maintainer: Trapezoid <trapezoid.g@gmail.com> - http://unsigned.g.hatena.ne.jp/Trapezoid 
    6 // 
    7 // Map behave like text-object for Vimperator 
    8 // 
    9 // Variables: 
    10 //  g:browser_object_prefix: 
    11 //      default: '' 
    12 //      usage: let g:browser_object_prefix = ',' 
    13 // Mappings: 
    14 //  'dd' 
    15 //      Delete current tab (when prefix is '' only) 
    16 //  '{motion}/' 
    17 //      {motion} pattern matched tabs 
    18 //  '{motion}{scope}{target}' 
    19 //      Motions: 
    20 //          'd' : Delete 
    21 //          'r' : Reload 
    22 //          'y' : Yank 
    23 //          'e' : Set Pin 
    24 //          'E' : Unset Pin 
    25 //      Scopes: 
    26 //          'l' : Left 
    27 //          'r' : Right 
    28 //          'a' : All 
    29 //          'c' : Current 
    30 //          'o' : Other 
    31 //          's' : Same host 
    32 //          'p' : Pinned 
    33 //      Target: 
    34 //          't' : Tabs 
     61 
    3562(function(){ 
    3663     var XMigemoCore, XMigemoTextUtils;