/** * ==VimperatorPlugin== * @name incuri.js * @description increment the number in the URI * @description-ja URIに含まれる数字をインクリメント * @author hogelog * @version 0.03 * ==/VimperatorPlugin== * * COMMANDS: * :decdomain -> Decrement the number in the domain name * :decfragment -> Decrement the number in the fragment ID * :decpath -> Decrement the number in the path name * :decport -> Decrement the number in the port number * :decquery -> Decrement the number in the query string * :decuri -> Decrement the number in the URI * :incdomain -> Increment the number in the domain name * :incfragment -> Increment the number in the fragment ID * :incpath -> Increment the number in the path name * :incport -> Increment the number in the port number * :incquery -> Increment the number in the query string * :incuri -> Increment the number in the URI * */ (function() { var numreg = /^(.*\D|)(\d+)(\D*)$/; function numstr(num, len) { var str = String(num); while(str.length 2 ? p == part ? newpart : l[part] : part) .join(""); } } else { liberator.echoerr("Cannot find a number in the " + p + " <" + part + ">"); } }; [ ["uri", "href", "URI"], ["path", "pathname", "path name"], ["query", "search", "query string"], ["fragment", "hash", "fragment ID"], ["port", "port", "port number"], ["domain", "hostname", "domain name"] ].forEach(function(part) { var [suffix, prop, name] = part; [ ["In", 1], ["De", -1] ].forEach(function(direction) { var [prefix, dir] = direction; liberator.commands .add([prefix.toLowerCase() + "c" + suffix], prefix + "crement the number in the " + name + ".", makeinc(function(x, q) x + dir * q, prop), { argCount : "?" }); }); }); })(); // vim: set sw=4 ts=4 sts=4 et: lscreen&id=6fa7de1eb12c23cf185661a7b8709d1b300d20d5'>xpcom_inspector.js
blob: a093dcc9800e484b54ea6246d0d7d89b607a3b95 (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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195