File: options.html

package info (click to toggle)
vimium 2.1.2-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,212 kB
  • sloc: javascript: 12,766; makefile: 7
file content (369 lines) | stat: -rw-r--r-- 13,243 bytes parent folder | download
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
<!DOCTYPE html>
<html>
<head>
  <title>Vimium Options</title>
  <link rel="stylesheet" type="text/css" href="options.css">
  <link rel="stylesheet" type="text/css" href="../content_scripts/vimium.css" />

  <script src="../lib/utils.js"></script>
  <script src="../lib/keyboard_utils.js"></script>
  <script src="../lib/dom_utils.js"></script>
  <script src="../lib/rect.js"></script>
  <script src="../lib/handler_stack.js"></script>
  <script src="../lib/settings.js"></script>
  <script src="../lib/find_mode_history.js"></script>
  <script src="../content_scripts/mode.js"></script>
  <script src="../content_scripts/ui_component.js"></script>
  <script src="../content_scripts/link_hints.js"></script>
  <script src="../content_scripts/vomnibar.js"></script>
  <script src="../content_scripts/scroller.js"></script>
  <script src="../content_scripts/marks.js"></script>
  <script src="../content_scripts/mode_insert.js"></script>
  <script src="../content_scripts/mode_find.js"></script>
  <script src="../content_scripts/mode_key_handler.js"></script>
  <script src="../content_scripts/mode_visual.js"></script>
  <script src="../content_scripts/hud.js"></script>
  <script src="../content_scripts/mode_normal.js"></script>
  <script src="../content_scripts/vimium_frontend.js"></script>

  <script src="exclusion_rules_editor.js"></script>
  <script src="options.js"></script>
</head>

<body class="vimiumBody">
  <div id="wrapper">
    <header>Vimium Options</header>
    <input type="hidden" id="settingsVersion"/>
    <table id="options">
      <tr id="exclusionRulesSection">
        <td class="caption">Excluded URLs<br />and keys</td>
        <td>
          <div class="help">
            <div class="example">
              Disable Vimium on URLs.<br />
              "Patterns" are URL regular expressions. <code>*</code> will match zero or more
              characters. <br />
              "Keys": Vimium will exclude these keys and pass them through to the page.
            </div>
          </div>
          <div>
            <div id="exclusionScrollBox">
              <table id="exclusionRules">
                <tr>
                  <td><span class="exclusionHeaderText">Patterns</span></td>
                  <td><span class="exclusionHeaderText">Keys to exclude</span></td>
                </tr>
              </table>
            </div>
            <button id="exclusionAddButton">Add rule</button>
          </div>
        </td>
      </tr>
      <tr>
        <td class="caption">Custom key<br />mappings</td>
        <td id="mappingsHelp" verticalAlign="top">
          <div class="help">
            <div class="example">
              <!-- TODO(ilya/philc): Expand this and style it better. -->
              Enter commands to remap your keys. Available commands:<br />
              <pre id="exampleKeyMapping">
map j scrollDown
unmap j
unmapAll
" this is a comment
# this is also a comment</pre>
              <a href="#" id="showCommands">Show available commands</a>.
            </div>
          </div>
          <textarea id="keyMappings" type="text" tabIndex="1"></textarea>
        </td>
      </tr>
      <tr>
        <td class="caption">Custom search<br />engines</td>
        <td verticalAlign="top">
          <div class="help">
            <div class="example">
              Add search-engine shortcuts to the Vomnibar. Format:<br />
              <pre>
a: http://a.com/?q=%s
b: http://b.com/?q=%s description
" this is a comment
# this is also a comment</pre>
              %s is replaced with the search terms. <br />
              For search completion, see <a href="completion_engines.html" target="_blank">here</a>.
            </div>
          </div>
          <textarea id="searchEngines"></textarea>
        </td>
      </tr>
      <tbody id='advancedOptions'>
        <tr>
          <td colspan="2">
            <header>Advanced Options</header>
          </td>
        </tr>
        <tr>
          <td class="caption">Scroll step size</td>
          <td>
            <div class="help">
              <div class="example">
                The size for basic movements (usually j/k/h/l).
              </div>
            </div>
            <input id="scrollStepSize" type="number" />px
          </td>
        </tr>
        <tr id="linkHintCharactersContainer">
          <td class="caption">Characters used<br /> for link hints</td>
          <td verticalAlign="top">
            <div class="help">
              <div class="example">
                The characters placed next to each link after typing "f" to enter link-hint mode.
              </div>
            </div>
            <input id="linkHintCharacters" type="text" />
            <div class="example info reset-link"><a href="#">Reset</a></div>
          </td>
        </tr>
        <tr id="linkHintNumbersContainer">
          <td class="caption">Characters used<br /> for link hints</td>
          <td verticalAlign="top">
            <div class="help">
              <div class="example">
                The characters placed next to each link after typing "f" to enter link-hint mode.
              </div>
            </div>
            <input id="linkHintNumbers" type="text" />
            <div class="example info reset-link"><a href="#">Reset</a></div>
          </td>
        </tr>
        <tr>
          <td class="caption" verticalAlign="top">Miscellaneous<br />options</td>
          <td verticalAlign="top" class="booleanOption">
            <label>
              <input id="smoothScroll" type="checkbox" />
              Use smooth scrolling
            </label>
          </td>
        </tr>
        <tr>
          <td class="caption"></td>
          <td verticalAlign="top" class="booleanOption">
            <div class="help">
              <div class="example">
                In link-hint mode, this option lets you select a link by typing its text.
              </div>
            </div>
            <label>
              <input id="filterLinkHints" type="checkbox" />
              Use the link's name and characters for link-hint filtering
            </label>
          </td>
        </tr>
        <tr id="waitForEnterForFilteredHintsContainer">
          <td class="caption"></td>
          <td verticalAlign="top" class="booleanOption">
            <div class="help">
              <div class="example">
                You activate the link with <tt>Enter</tt>, <em>always</em>; so you never
                accidentally type Vimium commands.
              </div>
            </div>
            <label>
              <input id="waitForEnterForFilteredHints" type="checkbox" />
              Require <tt>Enter</tt> when filtering hints
            </label>
          </td>
        </tr>
        <tr>
          <td class="caption"></td>
          <td verticalAlign="top" class="booleanOption">
            <div class="help">
              <div class="example">
                Prevent pages from focusing an input on load (e.g. Google, Bing, etc.).
              </div>
            </div>
            <label>
              <input id="grabBackFocus" type="checkbox" />
              Don't let pages steal the focus on load
            </label>
          </td>
        </tr>
        <tr>
          <td class="caption"></td>
          <td verticalAlign="top" class="booleanOption">
            <div class="help">
              <div class="example">
                When enabled, the HUD will not be displayed in insert mode.
              </div>
            </div>
            <label>
              <input id="hideHud" type="checkbox" />
              Hide the Heads Up Display (HUD) in insert mode
            </label>
          </td>
        </tr>
        <tr>
          <td class="caption"></td>
          <td verticalAlign="top" class="booleanOption">
            <div class="help">
              <div class="example">
                Switch back to plain find mode by using the <code>\R</code> escape sequence.
              </div>
            </div>
            <label>
              <input id="regexFindMode" type="checkbox" />
              Treat find queries as JavaScript regular expressions
            </label>
          </td>
        </tr>
        <tr>
          <td class="caption"></td>
          <td verticalAlign="top" class="booleanOption">
            <div class="help">
              <div class="example">
                This forces the use of <code>en-US</code> QWERTY layout and
                can be helpful for non-Latin keyboards.
              </div>
            </div>
            <label>
              <input id="ignoreKeyboardLayout" type="checkbox" />
              Ignore keyboard layout
            </label>
          </td>
        </tr>
        <tr>
          <td class="caption">Default search<br />engine</td>
          <td verticalAlign="top">
            <div class="help">
              <div class="example">
                The search engine to use in the Vomnibar <br> (e.g.: "https://duckduckgo.com/?q=").
              </div>
            </div>
            <input id="searchUrl" type="text" />
            <div class="example info reset-link"><a href="#">Reset</a></div>
          </td>
        </tr>
        <tr>
          <td class="caption">Previous patterns</td>
          <td verticalAlign="top">
            <div class="help">
              <div class="example">
                The "navigate to previous page" command uses these patterns to find the link to
                follow.
              </div>
            </div>
            <input id="previousPatterns" type="text" />
            <div class="example info reset-link"><a href="#">Reset</a></div>
          </td>
        </tr>
        <tr>
          <td class="caption">Next patterns</td>
          <td verticalAlign="top">
            <div class="help">
              <div class="example">
                The "navigate to next page" command uses these patterns to find the link to follow.
              </div>
            </div>
            <input id="nextPatterns" type="text" />
            <div class="example info reset-link"><a href="#">Reset</a></div>
          </td>
        </tr>
        <tr>
          <td class="caption">New tab URL</td>
          <td verticalAlign="top">
            <div class="help">
              <div class="example">
                The page to open with the "create new tab" command. Set this to
                "<tt>pages/blank.html</tt>" for a blank page (except incognito mode).<br />
              </div>
            </div>
            <input id="newTabUrl" type="text" />
            <div class="example info reset-link"><a href="#">Reset</a></div>
          </td>
        </tr>
        <tr>
          <td class="caption">CSS for Vimium UI</td>
          <td verticalAlign="top">
            <div class="help">
              <div class="example">
                These styles are applied to link hints, the Vomnibar, the help dialog, the
                exclusions pop-up and the HUD.<br />
                By default, this CSS is used to style the characters next to each link
                hint.<br /><br />
                These styles are used in addition to and take precedence over Vimium's default
                styles.
              </div>
            </div>
            <textarea id="userDefinedLinkHintCss" class="code" type="text"></textarea>
            <div class="example info reset-link"><a href="#">Reset</a></div>
          </td>
        </tr>

        <tr>
          <td colspan="2">
            <header>Backup and Restore</header>
          </td>
        </tr>
        <tr>
          <td class="caption">Backup</td>
          <td>
            <div class="help">
              <div class="example">
                Click to backup your settings.
              </div>
            </div>
            <a id="downloadBackup" download="vimium-options.json" href="#">Download backup</a>
          </td>
        </tr>
        <tr>
          <td class="caption">Restore</td>
          <td>
            <div class="help">
              <div class="example">
                Choose a backup file to restore.
              </div>
            </div>
            <input id="uploadBackup" type="file" accept=".json" />
          </td>
        </tr>
      </tbody>
    </table>
  </div>

  <div id="footer">
    <div id="footerWrapper">
      <table id="footerTable">
        <tr>
          <td id="footerTableData">
            <span id="helpText">
              Type <strong>?</strong> to show the help dialog.
              <br />
              Type <strong>Ctrl-Enter</strong> to save <i>all</i> options.
            </span>
          </td>
          <td id="saveOptionsTableData" nowrap>
            <button id="saveOptions" disabled="disabled">No changes</button>
          </td>
        </tr>
      </table>
    </div>
  </div>

  <template id="exclusionRuleTemplate">
    <tr class="rule">
      <td>
        <input type="text" name="pattern" spellcheck="false" placeholder="URL pattern" />
      </td>
      <td>
        <input type="text" name="passKeys" spellcheck="false" placeholder="All" />
      </td>
      <td>
        <input type="button" class="remove" value="&#x2716;" />
      </td>
    </tr>
  </template>

</body>

</html>