/* * ==VimperatorPlugin== * @name migratestatusbar.js * @description migrate specified elements to status bar. * @description-ja 指定した要素をステータスバーに移動する。 * @author janus_wel * @version 0.10 * @minversion 2.0pre * @maxversion 2.0pre * ==/VimperatorPlugin== * * LICENSE * New BSD License * * USAGE * this script do not effect in default. * you should set liberator.globalVariables.migrate_elements. * it is the ARRAY has objects like below: * * { * id: id of the target element, * dest: id of the destination element - this is marker. in fine tuning, used 'after', * after: boolean that show insert position is after 'dest' element. * } * * refer: http://d.hatena.ne.jp/janus_wel/20081127/1227807826 * * EXAMPLE * in .vimperatorrc * * javascript <blob: f808c3416285f33fc94e098df9896367e3fedf81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38