mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-20 18:37:58 +01:00
Add a :helpall command.
This effectively divides the help into chunked and unchunked subsystems for clarity.
This commit is contained in:
@@ -302,7 +302,7 @@ const liberator = (function () //{{{
|
|||||||
registerObserver("load_mappings", function () {
|
registerObserver("load_mappings", function () {
|
||||||
|
|
||||||
mappings.add(modes.all, ["<F1>"],
|
mappings.add(modes.all, ["<F1>"],
|
||||||
"Open help window",
|
"Open the help page",
|
||||||
function () { liberator.help(); });
|
function () { liberator.help(); });
|
||||||
|
|
||||||
if (liberator.has("session"))
|
if (liberator.has("session"))
|
||||||
@@ -561,21 +561,34 @@ const liberator = (function () //{{{
|
|||||||
bang: true
|
bang: true
|
||||||
});
|
});
|
||||||
|
|
||||||
commands.add(["h[elp]"],
|
[
|
||||||
"Display help",
|
{
|
||||||
|
name: "h[elp]",
|
||||||
|
description: "Open the help page"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "helpa[ll]",
|
||||||
|
description: "Open the single unchunked help page"
|
||||||
|
}
|
||||||
|
].forEach(function (command) {
|
||||||
|
let unchunked = command.name == "helpa[ll]";
|
||||||
|
|
||||||
|
commands.add([command.name],
|
||||||
|
command.description,
|
||||||
function (args)
|
function (args)
|
||||||
{
|
{
|
||||||
if (args.bang)
|
if (args.bang)
|
||||||
return void liberator.echoerr("E478: Don't panic!");
|
return void liberator.echoerr("E478: Don't panic!");
|
||||||
|
|
||||||
liberator.help(args.literalArg);
|
liberator.help(args.literalArg, unchunked);
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
argCount: "?",
|
argCount: "?",
|
||||||
bang: true,
|
bang: true,
|
||||||
completer: function (context) completion.help(context),
|
completer: function (context) completion.help(context, unchunked),
|
||||||
literal: 0
|
literal: 0
|
||||||
});
|
});
|
||||||
|
});
|
||||||
|
|
||||||
commands.add(["javas[cript]", "js"],
|
commands.add(["javas[cript]", "js"],
|
||||||
"Run a JavaScript command through eval()",
|
"Run a JavaScript command through eval()",
|
||||||
@@ -823,12 +836,14 @@ const liberator = (function () //{{{
|
|||||||
context.completions = liberator.extensions;
|
context.completions = liberator.extensions;
|
||||||
};
|
};
|
||||||
|
|
||||||
completion.help = function help(context) {
|
completion.help = function help(context, unchunked) {
|
||||||
context.title = ["Help"];
|
context.title = ["Help"];
|
||||||
context.anchored = false;
|
context.anchored = false;
|
||||||
|
context.key = unchunked;
|
||||||
context.generate = function ()
|
context.generate = function ()
|
||||||
{
|
{
|
||||||
let res = config.helpFiles.map(function (file) {
|
let files = unchunked ? ["all.html"] : config.helpFiles;
|
||||||
|
let res = files.map(function (file) {
|
||||||
let resp = util.httpGet("chrome://liberator/locale/" + file);
|
let resp = util.httpGet("chrome://liberator/locale/" + file);
|
||||||
if (!resp)
|
if (!resp)
|
||||||
return [];
|
return [];
|
||||||
@@ -1335,11 +1350,13 @@ const liberator = (function () //{{{
|
|||||||
* Returns the URL of the specified help <b>topic</b> if it exists.
|
* Returns the URL of the specified help <b>topic</b> if it exists.
|
||||||
*
|
*
|
||||||
* @param {string} topic The help topic to lookup.
|
* @param {string} topic The help topic to lookup.
|
||||||
|
* @param {boolean} unchunked Whether to search the unchunked help page.
|
||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
findHelp: function (topic)
|
findHelp: function (topic, unchunked)
|
||||||
{
|
{
|
||||||
let items = completion.runCompleter("help", topic);
|
unchunked = !!unchunked;
|
||||||
|
let items = completion.runCompleter("help", topic, null, unchunked);
|
||||||
let partialMatch = null;
|
let partialMatch = null;
|
||||||
|
|
||||||
function format(item) item[1] + "#" + encodeURIComponent(item[0]);
|
function format(item) item[1] + "#" + encodeURIComponent(item[0]);
|
||||||
@@ -1363,14 +1380,15 @@ const liberator = (function () //{{{
|
|||||||
* exists.
|
* exists.
|
||||||
*
|
*
|
||||||
* @param {string} topic The help topic to open.
|
* @param {string} topic The help topic to open.
|
||||||
|
* @param {boolean} unchunked Whether to use the unchunked help page.
|
||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
help: function (topic)
|
help: function (topic, unchunked)
|
||||||
{
|
{
|
||||||
let where = (options["newtab"] && options.get("newtab").has("all", "help"))
|
let where = (options["newtab"] && options.get("newtab").has("all", "help"))
|
||||||
? liberator.NEW_TAB : liberator.CURRENT_TAB;
|
? liberator.NEW_TAB : liberator.CURRENT_TAB;
|
||||||
|
|
||||||
if (!topic)
|
if (!topic && !unchunked)
|
||||||
{
|
{
|
||||||
let helpFile = options["helpfile"];
|
let helpFile = options["helpfile"];
|
||||||
|
|
||||||
@@ -1381,7 +1399,7 @@ const liberator = (function () //{{{
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let page = this.findHelp(topic);
|
let page = this.findHelp(topic, unchunked);
|
||||||
if (page == null)
|
if (page == null)
|
||||||
return void liberator.echoerr("E149: Sorry, no help for " + topic);
|
return void liberator.echoerr("E149: Sorry, no help for " + topic);
|
||||||
|
|
||||||
@@ -1915,14 +1933,15 @@ window.addEventListener("liberatorHelpLink", function (event) {
|
|||||||
tag = tag.replace(/\[.*?\]/g, "").replace(/!$/, "");
|
tag = tag.replace(/\[.*?\]/g, "").replace(/!$/, "");
|
||||||
|
|
||||||
if (tag)
|
if (tag)
|
||||||
var page = liberator.findHelp(tag);
|
|
||||||
|
|
||||||
if (page)
|
|
||||||
{
|
{
|
||||||
|
let page = liberator.findHelp(tag, /\/all.html($|#)/.test(elem.ownerDocument.location.href));
|
||||||
|
if (page)
|
||||||
elem.href = "chrome://liberator/locale/" + page;
|
elem.href = "chrome://liberator/locale/" + page;
|
||||||
if (buffer.URL.replace(/#.*/, "") == elem.href.replace(/#.*/, "")) // XXX
|
|
||||||
setTimeout(function () { content.postMessage("fragmentChange", "*"); }, 0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: use HashChange event in Gecko 1.9.2
|
||||||
|
if (elem.href)
|
||||||
|
setTimeout(function () { content.postMessage("fragmentChange", "*"); }, 0);
|
||||||
}, true, true);
|
}, true, true);
|
||||||
|
|
||||||
// called when the chrome is fully loaded and before the main window is shown
|
// called when the chrome is fully loaded and before the main window is shown
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
" Vim syntax file
|
" Vim syntax file
|
||||||
" Language: Muttator configuration file
|
" Language: Muttator configuration file
|
||||||
" Maintainer: Doug Kearns <dougkearns@gmail.com>
|
" Maintainer: Doug Kearns <dougkearns@gmail.com>
|
||||||
" Last Change: 2009 Jul 22
|
" Last Change: 2009 Aug 3
|
||||||
|
|
||||||
" TODO: make this muttator specific - shared liberator config?
|
" TODO: make this muttator specific - shared liberator config?
|
||||||
|
|
||||||
@@ -25,8 +25,8 @@ syn keyword muttatorCommand ab[breviate] ab[clear] addo[ns] addr[essbook] bN[ext
|
|||||||
\ colo[rscheme] com[mand] comc[lear] con[tact] contacts copy[to] cu[nmap] cuna[bbrev] delc[ommand] delm[arks] delmac[ros]
|
\ colo[rscheme] com[mand] comc[lear] con[tact] contacts copy[to] cu[nmap] cuna[bbrev] delc[ommand] delm[arks] delmac[ros]
|
||||||
\ dels[tyle] dia[log] do[autocmd] doautoa[ll] ec[ho] echoe[rr] echom[sg] em[enu] empty[trash] exe[cute] exta[dd] extd[isable]
|
\ dels[tyle] dia[log] do[autocmd] doautoa[ll] ec[ho] echoe[rr] echom[sg] em[enu] empty[trash] exe[cute] exta[dd] extd[isable]
|
||||||
\ extde[lete] exte[nable] extens[ions] exto[ptions] extp[references] exu[sage] fini[sh] frameo[nly] get[messages] go[to]
|
\ extde[lete] exte[nable] extens[ions] exto[ptions] extp[references] exu[sage] fini[sh] frameo[nly] get[messages] go[to]
|
||||||
\ h[elp] ha[rdcopy] hi[ghlight] ia[bbrev] iabc[lear] im[ap] imapc[lear] ino[remap] iu[nmap] iuna[bbrev] javas[cript] js let
|
\ h[elp] helpa[ll] ha[rdcopy] hi[ghlight] ia[bbrev] iabc[lear] im[ap] imapc[lear] ino[remap] iu[nmap] iuna[bbrev] javas[cript]
|
||||||
\ loadplugins lpl m[ail] ma[rk] macros map mapc[lear] marks mes[sages] messc[lear] mkm[uttatorrc] mm[ap] mmapc[lear]
|
\ js let loadplugins lpl m[ail] ma[rk] macros map mapc[lear] marks mes[sages] messc[lear] mkm[uttatorrc] mm[ap] mmapc[lear]
|
||||||
\ mno[remap] move[to] mu[nmap] nm[ap] nmapc[lear] nno[remap] no[remap] norm[al] nu[nmap] optionu[sage] pa[geinfo] pagest[yle]
|
\ mno[remap] move[to] mu[nmap] nm[ap] nmapc[lear] nno[remap] no[remap] norm[al] nu[nmap] optionu[sage] pa[geinfo] pagest[yle]
|
||||||
\ pas pc[lose] pl[ay] pref[erences] prefs pw[d] q[uit] re[load] res[tart] run runt[ime] sav[eas] scrip[tnames] se[t]
|
\ pas pc[lose] pl[ay] pref[erences] prefs pw[d] q[uit] re[load] res[tart] run runt[ime] sav[eas] scrip[tnames] se[t]
|
||||||
\ setg[lobal] setl[ocal] sil[ent] so[urce] st[op] sty[le] tN[ext] t[open] tab tabN[ext] tabc[lose] tabd[o] tabfir[st]
|
\ setg[lobal] setl[ocal] sil[ent] so[urce] st[op] sty[le] tN[ext] t[open] tab tabN[ext] tabc[lose] tabd[o] tabfir[st]
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ it, recommend it and like it :)
|
|||||||
|
|
||||||
section:Help{nbsp}topics[overview]
|
section:Help{nbsp}topics[overview]
|
||||||
|
|
||||||
TO BE WRITTEN...
|
//TO BE WRITTEN...
|
||||||
|
|
||||||
For now use [c]:viusage![c], [c]:exusage![c] and [c]:optionusage![c] to find
|
For now use [c]:viusage![c], [c]:exusage![c] and [c]:optionusage![c] to find
|
||||||
out about available mappings, commands and options. When in Message mode
|
out about available mappings, commands and options. When in Message mode
|
||||||
|
|||||||
@@ -33,7 +33,7 @@
|
|||||||
*-liberator* option
|
*-liberator* option
|
||||||
* add [m];i[m] and [m];I[m] for opening image location (in new tab)
|
* add [m];i[m] and [m];I[m] for opening image location (in new tab)
|
||||||
* add [j]all.html[j] to show all help sections in a single page - available via
|
* add [j]all.html[j] to show all help sections in a single page - available via
|
||||||
[c]:help all[c]
|
[c]:helpall[c]
|
||||||
* add [m];c[m] extended hint mode - open the context menu
|
* add [m];c[m] extended hint mode - open the context menu
|
||||||
* add [m]@:[m] mapping - repeat the last Ex command
|
* add [m]@:[m] mapping - repeat the last Ex command
|
||||||
* add [m]\[m] mapping - toggle between rendered and source view
|
* add [m]\[m] mapping - toggle between rendered and source view
|
||||||
|
|||||||
@@ -125,7 +125,7 @@ const config = { //{{{
|
|||||||
"pattern.html", "tabs.html", "hints.html", "map.html", "eval.html",
|
"pattern.html", "tabs.html", "hints.html", "map.html", "eval.html",
|
||||||
"marks.html", "repeat.html", "autocommands.html", "print.html",
|
"marks.html", "repeat.html", "autocommands.html", "print.html",
|
||||||
"gui.html", "styling.html", "message.html", "developer.html",
|
"gui.html", "styling.html", "message.html", "developer.html",
|
||||||
"various.html", "version.html", "index.html", "all.html"
|
"various.html", "version.html", "index.html"
|
||||||
],
|
],
|
||||||
|
|
||||||
get ignoreKeys() {
|
get ignoreKeys() {
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
" Vim syntax file
|
" Vim syntax file
|
||||||
" Language: VIMperator configuration file
|
" Language: VIMperator configuration file
|
||||||
" Maintainer: Doug Kearns <dougkearns@gmail.com>
|
" Maintainer: Doug Kearns <dougkearns@gmail.com>
|
||||||
" Last Change: 2009 Jul 22
|
" Last Change: 2009 Aug 3
|
||||||
|
|
||||||
" TODO: make this vimperator specific - shared liberator config?
|
" TODO: make this vimperator specific - shared liberator config?
|
||||||
|
|
||||||
@@ -25,16 +25,16 @@ syn keyword vimperatorCommand ab[breviate] ab[clear] addo[ns] bN[ext] b[uffer] b
|
|||||||
\ cno[remap] colo[rscheme] com[mand] comc[lear] cu[nmap] cuna[bbrev] delbm[arks] delc[ommand] delm[arks] delmac[ros]
|
\ cno[remap] colo[rscheme] com[mand] comc[lear] cu[nmap] cuna[bbrev] delbm[arks] delc[ommand] delm[arks] delmac[ros]
|
||||||
\ delqm[arks] dels[tyle] dia[log] dl do[autocmd] doautoa[ll] downl[oads] e[dit] ec[ho] echoe[rr] echom[sg] em[enu] exe[cute]
|
\ delqm[arks] dels[tyle] dia[log] dl do[autocmd] doautoa[ll] downl[oads] e[dit] ec[ho] echoe[rr] echom[sg] em[enu] exe[cute]
|
||||||
\ exta[dd] extd[isable] extde[lete] exte[nable] extens[ions] exto[ptions] extp[references] exu[sage] files fini[sh] fo[rward]
|
\ exta[dd] extd[isable] extde[lete] exte[nable] extens[ions] exto[ptions] extp[references] exu[sage] files fini[sh] fo[rward]
|
||||||
\ frameo[nly] fw h[elp] ha[rdcopy] hi[ghlight] hist[ory] hs ia[bbrev] iabc[lear] im[ap] imapc[lear] ino[remap] iu[nmap]
|
\ frameo[nly] fw h[elp] helpa[ll] ha[rdcopy] hi[ghlight] hist[ory] hs ia[bbrev] iabc[lear] im[ap] imapc[lear] ino[remap]
|
||||||
\ iuna[bbrev] javas[cript] js ju[mps] let loadplugins lpl ls ma[rk] macros map mapc[lear] marks mes[sages] messc[lear]
|
\ iu[nmap] iuna[bbrev] javas[cript] js ju[mps] let loadplugins lpl ls ma[rk] macros map mapc[lear] marks mes[sages]
|
||||||
\ mkv[imperatorrc] nm[ap] nmapc[lear] nno[remap] no[remap] noh[lsearch] norm[al] nu[nmap] o[pen] optionu[sage] pa[geinfo]
|
\ messc[lear] mkv[imperatorrc] nm[ap] nmapc[lear] nno[remap] no[remap] noh[lsearch] norm[al] nu[nmap] o[pen] optionu[sage]
|
||||||
\ pagest[yle] pas pc[lose] pl[ay] pref[erences] prefs pw[d] q[uit] qa[ll] qma[rk] qmarks quita[ll] re[draw] re[load]
|
\ pa[geinfo] pagest[yle] pas pc[lose] pl[ay] pref[erences] prefs pw[d] q[uit] qa[ll] qma[rk] qmarks quita[ll] re[draw]
|
||||||
\ reloada[ll] res[tart] run runt[ime] sav[eas] sb[ar] sb[open] sbcl[ose] scrip[tnames] se[t] setg[lobal] setl[ocal] sideb[ar]
|
\ re[load] reloada[ll] res[tart] run runt[ime] sav[eas] sb[ar] sb[open] sbcl[ose] scrip[tnames] se[t] setg[lobal] setl[ocal]
|
||||||
\ sil[ent] so[urce] st[op] stopa[ll] sty[le] tN[ext] t[open] tab tabN[ext] tabc[lose] tabd[o] tabde[tach] tabdu[plicate]
|
\ sideb[ar] sil[ent] so[urce] st[op] stopa[ll] sty[le] tN[ext] t[open] tab tabN[ext] tabc[lose] tabd[o] tabde[tach]
|
||||||
\ tabe[dit] tabfir[st] tabl[ast] tabm[ove] tabn[ext] tabnew tabo[nly] tabopen tabp[revious] tabr[ewind] tabs tbh[ide] tbs[how]
|
\ tabdu[plicate] tabe[dit] tabfir[st] tabl[ast] tabm[ove] tabn[ext] tabnew tabo[nly] tabopen tabp[revious] tabr[ewind] tabs
|
||||||
\ tbt[oggle] time tn[ext] toolbarh[ide] toolbars[how] toolbart[oggle] tp[revious] u[ndo] una[bbreviate] undoa[ll] unl[et]
|
\ tbh[ide] tbs[how] tbt[oggle] time tn[ext] toolbarh[ide] toolbars[how] toolbart[oggle] tp[revious] u[ndo] una[bbreviate]
|
||||||
\ unm[ap] ve[rsion] vie[wsource] viu[sage] vm[ap] vmap[clear] vno[remap] vu[nmap] w[rite] wc[lose] win[open] winc[lose]
|
\ undoa[ll] unl[et] unm[ap] ve[rsion] vie[wsource] viu[sage] vm[ap] vmap[clear] vno[remap] vu[nmap] w[rite] wc[lose] win[open]
|
||||||
\ wine[dit] wo[pen] wq wqa[ll] xa[ll] zo[om]
|
\ winc[lose] wine[dit] wo[pen] wq wqa[ll] xa[ll] zo[om]
|
||||||
\ contained
|
\ contained
|
||||||
|
|
||||||
syn match vimperatorCommand "!" contained
|
syn match vimperatorCommand "!" contained
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ LOGO=<div style="text-align: center;"><span class="vimperator-logo"></span></div
|
|||||||
</table>
|
</table>
|
||||||
|
|
||||||
[help-inlinemacro]
|
[help-inlinemacro]
|
||||||
<a href="chrome://liberator/locale/{1}">{target}</a>
|
<a href="chrome://liberator/locale/{outfile@.*all.html:all.html:{1}}#{2={1}}">{target}</a>
|
||||||
|
|
||||||
[quotes]
|
[quotes]
|
||||||
|=tag
|
|=tag
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ _make doc_. Please refer to the
|
|||||||
http://www.methods.co.nz/asciidoc/userguide.html[asciidoc documentation] above
|
http://www.methods.co.nz/asciidoc/userguide.html[asciidoc documentation] above
|
||||||
for details. Usually you can just write text as is, and mostly it will be
|
for details. Usually you can just write text as is, and mostly it will be
|
||||||
interpreted correctly. The only difficult part is to write special sections
|
interpreted correctly. The only difficult part is to write special sections
|
||||||
like for help::help[various.html#online-help].
|
like for help::help[various.html,online-help].
|
||||||
|
|
||||||
----------------------------------------------------------------------------------
|
----------------------------------------------------------------------------------
|
||||||
|<F1>| |:help| |:h| |help|
|
|<F1>| |:help| |:h| |help|
|
||||||
@@ -64,7 +64,7 @@ Vimperator documentation:
|
|||||||
|
|
||||||
- *$$section:Writing{nbsp}documentation[writing-docs,documentation]$$* Creates
|
- *$$section:Writing{nbsp}documentation[writing-docs,documentation]$$* Creates
|
||||||
a new section like _Writing Documentation_ in this help file with 2 tags.
|
a new section like _Writing Documentation_ in this help file with 2 tags.
|
||||||
- *$$help:developer{nbsp}information[developer.html#documentation]$$* creates
|
- *$$help:developer{nbsp}information[developer.html,documentation]$$* creates
|
||||||
a link with text _developer information_ to the tag _documentation_ in
|
a link with text _developer information_ to the tag _documentation_ in
|
||||||
the file _developer.html_.
|
the file _developer.html_.
|
||||||
|
|
||||||
@@ -72,7 +72,7 @@ Vimperator documentation:
|
|||||||
If you don't know in which file/section you should put some documentation, ask
|
If you don't know in which file/section you should put some documentation, ask
|
||||||
on the mailing list or on #vimperator. Usually help should be grouped together
|
on the mailing list or on #vimperator. Usually help should be grouped together
|
||||||
in logically connected subject areas like
|
in logically connected subject areas like
|
||||||
help:opening{nbsp}web{nbsp}pages[browsing.html#opening].
|
help:opening{nbsp}web{nbsp}pages[browsing.html,opening].
|
||||||
|
|
||||||
section:Generating{nbsp}documentation[generating-docs]
|
section:Generating{nbsp}documentation[generating-docs]
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
heading:Expression{nbsp}evaluation[expression,expr,eval]
|
heading:Expression{nbsp}evaluation[expression,expr,eval]
|
||||||
|
|
||||||
INTRO TO BE WRITTEN...
|
//INTRO TO BE WRITTEN...
|
||||||
|
|
||||||
|:ec| |:echo| +
|
|:ec| |:echo| +
|
||||||
||:ec[ho] {expr}||
|
||:ec[ho] {expr}||
|
||||||
|
|||||||
@@ -193,7 +193,8 @@ section:Ex{nbsp}commands[ex-cmd-index,:index]
|
|||||||
||[c]:forward[c]|| Go forward in the browser history +
|
||[c]:forward[c]|| Go forward in the browser history +
|
||||||
||[c]:frameonly[c]|| Show only the current frame's page +
|
||[c]:frameonly[c]|| Show only the current frame's page +
|
||||||
||[c]:hardcopy[c]|| Print current document +
|
||[c]:hardcopy[c]|| Print current document +
|
||||||
||[c]:help[c]|| Display help +
|
||[c]:help[c]|| Open the help page +
|
||||||
|
||[c]:helpall[c]|| Open the single unchunked help page +
|
||||||
||[c]:highlight[c]|| Style Vimperator +
|
||[c]:highlight[c]|| Style Vimperator +
|
||||||
||[c]:history[c]|| Show recently visited URLs +
|
||[c]:history[c]|| Show recently visited URLs +
|
||||||
||[c]:iabbrev[c]|| Abbreviate a key sequence in Insert mode +
|
||[c]:iabbrev[c]|| Abbreviate a key sequence in Insert mode +
|
||||||
|
|||||||
@@ -451,7 +451,7 @@ ____
|
|||||||
|\'noprivate'| |\'private'|
|
|\'noprivate'| |\'private'|
|
||||||
||'private'|| boolean (default: off)
|
||'private'|| boolean (default: off)
|
||||||
____
|
____
|
||||||
Set the 'private browsing' option. In private browsing mode history, cache
|
Set the "private browsing" option. In private browsing mode history, cache
|
||||||
files, cookies, form data, passwords, and download list entries are available
|
files, cookies, form data, passwords, and download list entries are available
|
||||||
only for the duration of the private browsing session and deleted when
|
only for the duration of the private browsing session and deleted when
|
||||||
returning to normal browsing mode.
|
returning to normal browsing mode.
|
||||||
|
|||||||
@@ -27,9 +27,8 @@ ________________________________________________________________________________
|
|||||||
________________________________________________________________________________
|
________________________________________________________________________________
|
||||||
The file {rcfile} is used for user initialization commands. If {rcfile} is
|
The file {rcfile} is used for user initialization commands. If {rcfile} is
|
||||||
"NORC" then no startup initialization is performed except for the loading of
|
"NORC" then no startup initialization is performed except for the loading of
|
||||||
plugins, i.e. steps 1. and 2. in
|
plugins, i.e. steps 1. and 2. in [j]initialization[j] are skipped. If {rcfile}
|
||||||
help:initialization[starting.html#Initialization] are skipped. If {rcfile} is
|
is "NONE" then plugin loading is also skipped.
|
||||||
"NONE" then plugin loading is also skipped.
|
|
||||||
________________________________________________________________________________
|
________________________________________________________________________________
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -61,11 +61,18 @@ section:Online{nbsp}help[online-help]
|
|||||||
||:h[elp] [a][subject][a]|| +
|
||:h[elp] [a][subject][a]|| +
|
||||||
||<F1>||
|
||<F1>||
|
||||||
________________________________________________________________________________
|
________________________________________________________________________________
|
||||||
Open help window. The default page, as specified by 'helpfile' is shown unless
|
Open the help page. The default page, as specified by 'helpfile' is shown
|
||||||
[a][subject][a] is specified. If you need help for a specific topic, try
|
unless [a][subject][a] is specified. If you need help for a specific topic, try
|
||||||
[c]:help overview[c].
|
[c]:help overview[c].
|
||||||
|
________________________________________________________________________________
|
||||||
|
|
||||||
All help pages can be viewed in a single page via [c]:help all[c].
|
|
||||||
|
|:helpall| |:helpa| |help-all|
|
||||||
|
||:helpa[ll] [a][subject][a]|| +
|
||||||
|
________________________________________________________________________________
|
||||||
|
Open the single unchunked help page.
|
||||||
|
|
||||||
|
See [c]:help[c].
|
||||||
________________________________________________________________________________
|
________________________________________________________________________________
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
" Vim syntax file
|
" Vim syntax file
|
||||||
" Language: Xulmus configuration file
|
" Language: Xulmus configuration file
|
||||||
" Maintainer: Doug Kearns <dougkearns@gmail.com>
|
" Maintainer: Doug Kearns <dougkearns@gmail.com>
|
||||||
" Last Change: 2009 Jul 22
|
" Last Change: 2009 Aug 3
|
||||||
|
|
||||||
" TODO: make this xulmus specific - shared liberator config?
|
" TODO: make this xulmus specific - shared liberator config?
|
||||||
|
|
||||||
@@ -25,18 +25,18 @@ syn keyword xulmusCommand ab[breviate] ab[clear] addo[ns] bN[ext] b[uffer] ba[ck
|
|||||||
\ cno[remap] colo[rscheme] com[mand] comc[lear] cu[nmap] cuna[bbrev] delbm[arks] delc[ommand] delm[arks] delmac[ros]
|
\ cno[remap] colo[rscheme] com[mand] comc[lear] cu[nmap] cuna[bbrev] delbm[arks] delc[ommand] delm[arks] delmac[ros]
|
||||||
\ delqm[arks] dels[tyle] dia[log] displayp[ane] dl do[autocmd] doautoa[ll] downl[oads] dp[ane] dpcl[ose] dpope[n] e[dit]
|
\ delqm[arks] dels[tyle] dia[log] displayp[ane] dl do[autocmd] doautoa[ll] downl[oads] dp[ane] dpcl[ose] dpope[n] e[dit]
|
||||||
\ ec[ho] echoe[rr] echom[sg] em[enu] exe[cute] exta[dd] extd[isable] extde[lete] exte[nable] extens[ions] exto[ptions]
|
\ ec[ho] echoe[rr] echom[sg] em[enu] exe[cute] exta[dd] extd[isable] extde[lete] exte[nable] extens[ions] exto[ptions]
|
||||||
\ extp[references] exu[sage] f[ilter] files fini[sh] fo[rward] frameo[nly] fw h[elp] ha[rdcopy] hi[ghlight] hist[ory] hs
|
\ extp[references] exu[sage] f[ilter] files fini[sh] fo[rward] frameo[nly] fw h[elp] helpa[ll] ha[rdcopy] hi[ghlight]
|
||||||
\ ia[bbrev] iabc[lear] im[ap] imapc[lear] ino[remap] iu[nmap] iuna[bbrev] javas[cript] js ju[mps] let load loadplugins lpl ls
|
\ hist[ory] hs ia[bbrev] iabc[lear] im[ap] imapc[lear] ino[remap] iu[nmap] iuna[bbrev] javas[cript] js ju[mps] let load
|
||||||
\ ma[rk] macros map mapc[lear] marks mediav[iew] mes[sages] messc[lear] mkv[imperatorrc] mkx[ulmusrc] nm[ap] nmap[clear]
|
\ loadplugins lpl ls ma[rk] macros map mapc[lear] marks mediav[iew] mes[sages] messc[lear] mkv[imperatorrc] mkx[ulmusrc]
|
||||||
\ nno[remap] no[remap] noh[lsearch] norm[al] nu[nmap] o[pen] optionu[sage] pa[geinfo] pagest[yle] pas pc[lose] pl[ay]
|
\ nm[ap] nmap[clear] nno[remap] no[remap] noh[lsearch] norm[al] nu[nmap] o[pen] optionu[sage] pa[geinfo] pagest[yle] pas
|
||||||
\ playern[ext] playerp[lay] playerpa[use] playerpr[ev] players[top] pm[ap] pmap[clear] pno[remap] pref[erences] prefs pu[nmap]
|
\ pc[lose] pl[ay] playern[ext] playerp[lay] playerpa[use] playerpr[ev] players[top] pm[ap] pmap[clear] pno[remap]
|
||||||
\ pw[d] q[uit] qa[ll] qma[rk] qmarks queue quita[ll] re[draw] re[load] reloada[ll] res[tart] run runt[ime] sav[eas] sb[ar]
|
\ pref[erences] prefs pu[nmap] pw[d] q[uit] qa[ll] qma[rk] qmarks queue quita[ll] re[draw] re[load] reloada[ll] res[tart] run
|
||||||
\ sb[open] sbcl[ose] scrip[tnames] se[t] see[k] setg[lobal] setl[ocal] sideb[ar] sil[ent] sort[view] so[urce] st[op] stopa[ll]
|
\ runt[ime] sav[eas] sb[ar] sb[open] sbcl[ose] scrip[tnames] se[t] see[k] setg[lobal] setl[ocal] sideb[ar] sil[ent] sort[view]
|
||||||
\ sty[le] tN[ext] t[open] tab tabN[ext] tabc[lose] tabd[o] tabde[tach] tabdu[plicate] tabe[dit] tabfir[st] tabl[ast] tabm[ove]
|
\ so[urce] st[op] stopa[ll] sty[le] tN[ext] t[open] tab tabN[ext] tabc[lose] tabd[o] tabde[tach] tabdu[plicate] tabe[dit]
|
||||||
\ tabn[ext] tabnew tabo[nly] tabopen tabp[revious] tabr[ewind] tabs tbh[ide] tbs[how] tbt[oggle] time tn[ext] toolbarh[ide]
|
\ tabfir[st] tabl[ast] tabm[ove] tabn[ext] tabnew tabo[nly] tabopen tabp[revious] tabr[ewind] tabs tbh[ide] tbs[how]
|
||||||
\ toolbars[how] toolbart[oggle] tp[revious] u[ndo] una[bbreviate] undoa[ll] unl[et] unm[ap] ve[rsion] vie[wsource] viu[sage]
|
\ tbt[oggle] time tn[ext] toolbarh[ide] toolbars[how] toolbart[oggle] tp[revious] u[ndo] una[bbreviate] undoa[ll] unl[et]
|
||||||
\ vm[ap] vmap[clear] vno[remap] vol[ume] vu[nmap] w[rite] wc[lose] win[open] winc[lose] wine[dit] wo[pen] wq wqa[ll] xa[ll]
|
\ unm[ap] ve[rsion] vie[wsource] viu[sage] vm[ap] vmap[clear] vno[remap] vol[ume] vu[nmap] w[rite] wc[lose] win[open]
|
||||||
\ zo[om]
|
\ winc[lose] wine[dit] wo[pen] wq wqa[ll] xa[ll] zo[om]
|
||||||
\ contained
|
\ contained
|
||||||
|
|
||||||
syn match xulmusCommand "!" contained
|
syn match xulmusCommand "!" contained
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ LOGO=<div style="text-align: center;"><span class="xulmus-logo"></span></div>
|
|||||||
</table>
|
</table>
|
||||||
|
|
||||||
[help-inlinemacro]
|
[help-inlinemacro]
|
||||||
<a href="chrome://liberator/locale/{1}">{target}</a>
|
<a href="chrome://liberator/locale/{outfile@.*all.html:all.html:{1}}#{2={1}}">{target}</a>
|
||||||
|
|
||||||
[quotes]
|
[quotes]
|
||||||
|=tag
|
|=tag
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
heading:Expression{nbsp}evaluation[expression,expr,eval]
|
heading:Expression{nbsp}evaluation[expression,expr,eval]
|
||||||
|
|
||||||
INTRO TO BE WRITTEN...
|
//INTRO TO BE WRITTEN...
|
||||||
|
|
||||||
|:ec| |:echo| +
|
|:ec| |:echo| +
|
||||||
||:ec[ho] {expr}||
|
||:ec[ho] {expr}||
|
||||||
|
|||||||
@@ -232,7 +232,8 @@ section:Ex{nbsp}commands[ex-cmd-index,:index]
|
|||||||
||[c]:forward[c]|| Go forward in the browser history +
|
||[c]:forward[c]|| Go forward in the browser history +
|
||||||
||[c]:frameonly[c]|| Show only the current frame's page +
|
||[c]:frameonly[c]|| Show only the current frame's page +
|
||||||
||[c]:hardcopy[c]|| Print current document +
|
||[c]:hardcopy[c]|| Print current document +
|
||||||
||[c]:help[c]|| Display help +
|
||[c]:help[c]|| Open the help page +
|
||||||
|
||[c]:helpall[c]|| Open the single unchunked help page +
|
||||||
||[c]:highlight[c]|| Style Xulmus +
|
||[c]:highlight[c]|| Style Xulmus +
|
||||||
||[c]:history[c]|| Show recently visited URLs +
|
||[c]:history[c]|| Show recently visited URLs +
|
||||||
||[c]:iabbrev[c]|| Abbreviate a key sequence in Insert mode +
|
||[c]:iabbrev[c]|| Abbreviate a key sequence in Insert mode +
|
||||||
|
|||||||
@@ -27,9 +27,8 @@ ________________________________________________________________________________
|
|||||||
________________________________________________________________________________
|
________________________________________________________________________________
|
||||||
The file {rcfile} is used for user initialization commands. If {rcfile} is
|
The file {rcfile} is used for user initialization commands. If {rcfile} is
|
||||||
"NORC" then no startup initialization is performed except for the loading of
|
"NORC" then no startup initialization is performed except for the loading of
|
||||||
plugins, i.e. steps 1. and 2. in
|
plugins, i.e. steps 1. and 2. in [j]initialization[j] are skipped. If {rcfile}
|
||||||
help:initialization[starting.html#Initialization] are skipped. If {rcfile} is
|
is "NONE" then plugin loading is also skipped.
|
||||||
"NONE" then plugin loading is also skipped.
|
|
||||||
________________________________________________________________________________
|
________________________________________________________________________________
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -61,11 +61,18 @@ section:Online{nbsp}help[online-help]
|
|||||||
||:h[elp] [a][subject][a]|| +
|
||:h[elp] [a][subject][a]|| +
|
||||||
||<F1>||
|
||<F1>||
|
||||||
________________________________________________________________________________
|
________________________________________________________________________________
|
||||||
Open help window. The default page, as specified by 'helpfile' is shown unless
|
Open the help page. The default page, as specified by 'helpfile' is shown
|
||||||
[a][subject][a] is specified. If you need help for a specific topic, try
|
unless [a][subject][a] is specified. If you need help for a specific topic, try
|
||||||
[c]:help overview[c].
|
[c]:help overview[c].
|
||||||
|
________________________________________________________________________________
|
||||||
|
|
||||||
All help pages can be viewed in a single page via [c]:help all[c].
|
|
||||||
|
|:helpall| |:helpa| |help-all|
|
||||||
|
||:helpa[ll] [a][subject][a]|| +
|
||||||
|
________________________________________________________________________________
|
||||||
|
Open the single unchunked help page.
|
||||||
|
|
||||||
|
See [c]:help[c].
|
||||||
________________________________________________________________________________
|
________________________________________________________________________________
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user