summaryrefslogtreecommitdiff
path: root/common/locale/en-US/browsing.xml
blob: 801c93fa35baf9440686ef189dba762fec15d9b8 (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
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
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="chrome://liberator/content/help.xsl"?>

<!DOCTYPE document SYSTEM "chrome://liberator/content/liberator.dtd">

<document
    name="browsing"
    title="&liberator.appname; Browsing"
    xmlns="http://vimperator.org/namespaces/liberator"
    xmlns:html="http://www.w3.org/1999/xhtml">
<h1 tag="surfing browsing">Browsing</h1>
<toc start="2"/>

&liberator.appname; overrides nearly all &liberator.host; keys in order to make browsing more
pleasant for Vim users. On the rare occasions when you want to pass a keystroke
to &liberator.host;, or to the web page, and have it retain its original meaning you
have 2 possibilities:

<item>
    <tags><![CDATA[pass-through <C-z> CTRL-Z]]></tags>
    <spec>CTRL-Z</spec>
    <description>
        <p>
            Disable all &liberator.appname; keys except <k name="Esc"/> and pass them to the next event
            handler. This is especially useful if JavaScript controlled forms (e.g., the
            RichEdit form fields of Gmail) don't work anymore. To exit this mode, press
            <k name="Esc"/>. If you also need to pass <k name="Esc"/> in this mode to the web page,
            prepend it with <k name="C-v"/>.
        </p>
    </description>
</item>


<item>
    <tags><![CDATA[send-key <C-v> CTRL-V]]></tags>
    <spec>CTRL-V</spec>
    <description>
        <p>
            If you only need to pass a single key to a JavaScript form field or another
            extension prefix the key with <k name="C-v"/>. Also works to unshadow &liberator.host;
            shortcuts like <k name="C-o"/> which are otherwise hidden in &liberator.appname;. When
            &liberator.appname; mode is temporarily disabled with <k name="C-z"/>, <k name="C-v"/> will pass
            the next key to &liberator.appname; instead of the web page.
        </p>
    </description>
</item>


<h2 tag="opening">Opening web pages</h2>

<item>
    <tags>o :o :open</tags>
    <spec>:o<oa>pen</oa> <oa>arg1</oa>, <oa>arg2</oa>, …</spec>
    <spec>o</spec>
    <description>
        <p>
            Open one or more URLs in the current tab.
            Multiple URLs can be separated with <o>urlseparator</o> (default: ", " Note that the
            space after the comma is required.)
            The first URL is opened in the current tab, and all other URLs are
            opened in new tabs.
            Each token is analyzed and in this order:
        </p>

        <ol>
            <li>
                Opened as a local file if it is an existing relative or absolute filename.
                <ul>
                    <li><ex>:open /etc/fstab</ex> shows the file system table.</li>
                    <li><ex>:open ../other/foo.html</ex> in your home directory opens <tt>/home/other/foo.html</tt></li>
                </ul>
            </li>
            <li>
                 Opened with the specified search engine if the
                 token looks like a search string and the first word
                 is the name of a search engine (
                 <ex>:open wikipedia linus torvalds</ex> opens the Wikipedia entry for
                 linus torvalds). The short name of a search engine
                 is automatically guessed from its name. If you want
                 to set a custom name, you can change it with
                 <ex>:dialog searchengines</ex>.
            </li>
            <li>
                Opened with the default search engine or keyword
                (specified with the <o>defsearch</o> option) if the first
                word is no search engine (<ex>:open linus torvalds</ex>
                opens a Google search for linus torvalds).
           </li>
           <li>
               Passed directly to &liberator.host; in all other cases
               (<ex>:open www.osnews.com, www.slashdot.org</ex>
               opens OSNews in the current, and Slashdot in a new
               background tab).
           </li>
        </ol>

        <p>
            You can use <ex>:open -tags linux torvalds<k name="Tab"/></ex> to complete bookmarks with
            tag "linux" and which contain "torvalds". Note that -tags support is only
            available for tab completion, not for the actual command.
            The items which are completed on <k name="Tab"/> are specified in the <o>complete</o>
            option.
        </p>
    </description>
</item>


<item>
    <tags>t :t :tabopen :tabnew</tags>
    <spec>:tabopen<oa>!</oa> <oa>arg1</oa>, <oa>arg2</oa>, …</spec>
    <spec>t</spec>
    <description>
        <p>
            Just like <ex>:open</ex> but also uses a new tab for the first URL. When
            used with <oa>!</oa>, the <em>tabopen</em> value of the <o>activate</o> option is negated.
        </p>
    </description>
</item>


<item>
    <tags>T</tags>
    <spec>T</spec>
    <description>
        <p>
            Show a <ex>:tabopen</ex> prompt containing the current URL. Useful if you want to
            go somewhere by editing the URL of the current page.
        </p>
    </description>
</item>


<item>
    <tags>:tabdu :tabduplicate</tags>
    <spec>:<oa>count</oa>tabdu<oa>plicate</oa><oa>!</oa></spec>
    <description>
        <p>
            Duplicates current tab <oa>count</oa> times. Uses <em>tabopen</em> value of the <o>activate</o>
            option to determine if the last cloned tab should be activated. When used with
            <oa>!</oa>, <em>tabopen</em> value is negated.
        </p>
    </description>
</item>


<item>
    <tags>O</tags>
    <spec>O</spec>
    <description>
        <p>
            Show an <ex>:open</ex> prompt containing the current URL. Useful if you want to
            go somewhere by editing the URL of the current page.
        </p>
    </description>
</item>


<item>
    <tags>w :winopen :wopen</tags>
    <spec>:wino<oa>pen</oa><oa>!</oa> <oa>arg1</oa>, <oa>arg2</oa>, …</spec>
    <spec>w</spec>
    <description>
        <p>Just like <ex>:tabopen</ex> but opens the resulting web page(s) in a new window.</p>
    </description>
</item>


<item>
    <tags>W</tags>
    <spec>W</spec>
    <description>
        <p>
            Open one or more URLs in a new window based on current location. Works like
            <k>w</k> but preselects current URL in the <ex>:winopen</ex> query.
        </p>
    </description>
</item>


<item>
    <tags><![CDATA[<MiddleMouse> p]]></tags>
    <spec>p</spec>
    <description>
        <p>
            Open (put) a URL based on the current clipboard contents in the current buffer.
            You can also just select (for non-X11 users: copy) some non-URL text, and
            search for it with the default search engine or keyword (specified by the
            <o>defsearch</o> option) with <k>p</k>.
        </p>
    </description>
</item>


<item>
    <tags>P</tags>
    <spec>P</spec>
    <description>
        <p>
            Open (put) a URL based on the current clipboard contents in a new buffer. Works
            like <k>p</k> but opens a new tab.
        </p>
        <p>
            Whether the new buffer is activated, depends on the <o>activate</o> option.
        </p>
    </description>
</item>


<item>
    <tags>gP</tags>
    <spec>gP</spec>
    <description>
        <p>
            Open (put) a URL based on the current clipboard contents in a new buffer.
            Works like <k>P</k> but inverts the <o>activate</o> option.
        </p>
    </description>
</item>


<item>
    <tags><![CDATA[<C-x>]]></tags>
    <spec><oa>count</oa>&lt;C-x></spec>
    <description>
        <p>
            Decrements the last number in URL by 1, or by <oa>count</oa> if given. Negative
            numbers are not supported, as this is not generally useful, so the number cannot
            be decremented past 0.
        </p>
    </description>
</item>


<item>
    <tags><![CDATA[<C-a>]]></tags>
    <spec><oa>count</oa>&lt;C-a></spec>
    <description>
        <p>Increments the last number in URL by 1, or by <oa>count</oa> if given.</p>
    </description>
</item>


<item>
    <tags>~</tags>
    <spec>~</spec>
    <description>
        <p>
            Open home directory. You can also use the hints and have the probably fastest
            file browser on earth. :)
        </p>
    </description>
</item>


<h2 tag="navigating">Navigating</h2>

<item>
    <tags><![CDATA[H <C-o> CTRL-O :ba :back]]></tags>
    <spec>:<oa>count</oa>ba<oa>ck</oa> <oa>url</oa></spec>
    <spec>:ba<oa>ck</oa>!</spec>
    <spec>CTRL-o</spec>
    <description>
        <p>
            Go <oa>count</oa> pages back in the browser history. If <oa>url</oa> is specified go back to
            the first matching URL. The special version <ex>:back!</ex> goes to the beginning
            of the browser history.
        </p>
    </description>
</item>


<item>
    <tags><![CDATA[L <C-i> CTRL-i :fo :fw :forward]]></tags>
    <spec>:<oa>count</oa>fo<oa>rward</oa> <oa>url</oa></spec>
    <spec>:fo<oa>rward</oa>!</spec>
    <spec>CTRL-i</spec>
    <description>
        <p>
            Go <oa>count</oa> pages forward in the browser history. If <oa>url</oa> is specified go
            forward to the first matching URL. The special version <ex>:forward!</ex> goes to
            the end of the browser history.
        </p>
    </description>
</item>


<item>
    <tags>:ju :jumps</tags>
    <spec>:ju<oa>mps</oa></spec>
    <description>
        <p>List all jumps aka current tab's history aka session history.</p>

        <p>
            Current history position is marked with >, jump numbers are counters to be used
            with <ex>:back</ex> (above zero record) or <ex>:forward</ex> (below zero record).
        </p>
    </description>
</item>


<item>
    <tags>gh</tags>
    <spec>gh</spec>
    <description>
        <p>Go home. Opens the homepage in the current tab.</p>
    </description>
</item>


<item>
    <tags>gH</tags>
    <spec>gH</spec>
    <description>
        <p>
            Go home in a new tab. Opens the homepage in a new tab. Whether the new tab is
            activated or not depends on the <o>activate</o> option.
        </p>
    </description>
</item>


<item>
    <tags>gu</tags>
    <spec><oa>count</oa>gu</spec>
    <description>
        <p>Go to <oa>count</oa>th parent directory.</p>

        <p>
            <k>2gu</k> on
            <tt>http://www.example.com/dir1/dir2/file.htm</tt> opens
            <tt>http://www.example.com/dir1/</tt>.
        </p>
    </description>
</item>


<item>
    <tags>gU</tags>
    <spec>gU</spec>
    <description>
        <p>Go to the root of the web site.</p>

        <p>
            <k>gU</k> on <tt>http://www.example.com/dir1/dir2/file.htm</tt> opens
            <tt>http://www.example.com/</tt>.
            When browsing a local directory, it goes to the root directory.
        </p>
    </description>
</item>


<h2 tag="reloading">Reloading</h2>

<item>
    <tags>r</tags>
    <spec>r</spec>
    <description>
        <p>Force reloading of the current web page.</p>
    </description>
</item>


<item>
    <tags>R</tags>
    <spec>R</spec>
    <description>
        <p>Force reloading of the current web page skipping the cache.</p>
    </description>
</item>


<item>
    <tags>:re :reload</tags>
    <spec>:re<oa>load</oa><oa>!</oa></spec>
    <description>
        <p>
            Reload current web page. Forces reloading of the current page. If <oa>!</oa> is given,
            skip the cache.
        </p>
    </description>
</item>


<item>
    <tags>:reloada :reloadall</tags>
    <spec>:reloada<oa>ll</oa><oa>!</oa></spec>
    <description>
        <p>Reload all pages. Forces reloading of all pages. If <oa>!</oa> is given, skip the cache.</p>
    </description>
</item>


<h2 tag="stopping">Stopping</h2>

<item>
    <tags><![CDATA[<C-c>]]></tags>
    <spec>&lt;C-c></spec>
    <description>
        <p>Stop loading the current web page.</p>
    </description>
</item>


<item>
    <tags>:st :stop</tags>
    <spec>:st<oa>op</oa></spec>
    <description>
        <p>Stop loading the current web page.</p>
    </description>
</item>


<item>
    <tags>:stopa :stopall</tags>
    <spec>:stopa<oa>ll</oa></spec>
    <description>
        <p>Stop loading all web pages.</p>
    </description>
</item>


<h2 tag="writing save-file">Writing</h2>

<item>
    <tags>:w :write :sav :saveas</tags>
    <spec>:sav<oa>eas</oa><oa>!</oa> <oa>file</oa></spec>
    <description>
        <p>
            Save current web page to disk. If <oa>file</oa> is omitted, save to the page's
            default filename. Existing documents will only be overwritten if <oa>!</oa> is given.
        </p>
    </description>
</item>


<h2 tag="quitting save-session">Quitting</h2>

<item>
    <tags>:q :quit</tags>
    <spec>:q<oa>uit</oa></spec>
    <description>
        <p>
            Quit current tab. If this is the last tab in the window, close the window. If
            this was the last window, close &liberator.appname;. When quitting &liberator.appname;, the
            session is not stored.
        </p>
    </description>
</item>


<item>
    <tags>:qa :qall :quita :quitall</tags>
    <spec>:quita<oa>ll</oa></spec>
    <description>
        <p>
            Quit &liberator.appname;. Quit &liberator.appname;, no matter how many tabs/windows are open.
            The session is not stored.
        </p>
    </description>
</item>


<item>
    <tags>:wc :wclose :winc :winclose</tags>
    <spec>:winc<oa>lose</oa></spec>
    <description>
        <p>Close window.</p>
    </description>
</item>


<item>
    <tags>:winon :winonly</tags>
    <spec>:winon<oa>ly</oa></spec>
    <description>
        <p>Close all other windows.</p>
    </description>
</item>


<item>
    <tags>:xa :xall :wq :wqa :wqall</tags>
    <spec>:wqa<oa>ll</oa></spec>
    <spec>:xa<oa>ll</oa></spec>
    <description>
        <p>
            Save the session and quit. Quit &liberator.appname;, no matter how many tabs/windows
            are open. The session is stored. <ex>:wq</ex> is different from Vim, as it
            closes the window instead of just one tab by popular demand. Complain on the
            mailing list if you want to change that.
        </p>
    </description>
</item>


<item>
    <tags>ZQ</tags>
    <spec>ZQ</spec>
    <description>
        <p>Quit and don't save the session. Works like <ex>:qall</ex>.</p>
    </description>
</item>


<item>
    <tags>ZZ</tags>
    <spec>ZZ</spec>
    <description>
        <p>
            Quit and save the session. Quit &liberator.appname;, no matter how many tabs/windows
            are open. The session is stored. Works like <ex>:xall</ex>.
        </p>
    </description>
</item>


<h2 tag="current-directory">The current directory</h2>

<item>
    <tags>:chd :chdir :cd</tags>
    <spec>:cd <oa>-|path</oa></spec>
    <description>
        <p>Change the current directory. <ex>:cd -</ex> changes to the last directory.</p>
    </description>
</item>


<item>
    <tags>:pw :pwd</tags>
    <spec>:pw<oa>d</oa></spec>
    <description>
        <p>Print the current directory name.</p>
    </description>
</item>


</document>

<!-- vim:se sts=4 sw=4 et: -->