// PLUGIN_INFO {{{ let PLUGIN_INFO = opener opener --- URL 移動時にそのURLが既に開かれていたら、そのタブに移動する 1.0.0 voidy21 anekos http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/opener.js 2.3 2.3 ; // }}} // INFO {{{ let INFO = <> voidy21 anekos

URL 移動時にそのURLが既に開かれていたら、そのタブに移動する

; // }}} /* * Original version by voidy21: * http://vimperator.g.hatena.ne.jp/voidy21/20100119/1263907211 * http://vimperator.g.hatena.ne.jp/voidy21/20100127/1264542669 */ (function () { let U = liberator.plugins.libly.$U; function jump (url) { let index = 0; let url = util.stringToURLArray(url).toString(); for each ( [,tab] in tabs.browsers ) { if(url == tab.currentURI.spec){ tabs.select(index); return true; } ++index; } return false; } "open tabopen edit".split(/\s/).forEach( function (name) { let command = commands.get(name); if (!command) return; U.around( command, "action", function (next, args) { let url = args[0].string; if (!(url && jump(url))) return next(); } ); } ); //buffer.followLink()を変更 //hint-a-hint時[f,F]に対象のタブが既に開いてあったらjump let (ignore = false) { let ignoreBlock = function (block) { ignore = true; let result = block(); ignore = false; return result; }; U.around( buffer, "followLink", function (next, args) { return ignoreBlock(function () { let [elem,] = args; let url = elem.href; if (!(url && jump(url))){ liberator.echo("Now Loading... " + url); return next(); } }); } ); document.addEventListener( 'click', function (event) { if (ignore) return; let e = event.target; if (e && e.tagName.match(/^a$/i) && e.href && jump(e.href)) { event.preventDefault(); event.stopPropagation(); } }, true ); } })(); 38ef8220cf2b732'>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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166