1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 21:38:11 +01:00

Update Xulmus docs, in theory.

--HG--
branch : xslt
rename : common/locale/en-US/intro.xml => vimperator/locale/en-US/intro.xml
rename : common/locale/en-US/tutorial.xml => vimperator/locale/en-US/tutorial.xml
This commit is contained in:
Kris Maglione
2009-10-24 18:45:11 -04:00
parent 2c1f7316a6
commit c697b165a0
61 changed files with 550 additions and 6072 deletions

View File

@@ -206,8 +206,6 @@ Liberator.prototype = {
{
case "help":
let url = this.FILE_MAP[uri.path.replace(/^\/|#.*/g, "")];
dump("name: " + uri.path.replace(/#.*/, "") + "\n");
dump("uri: " + url + "\n");
if (!url)
break;
return makeChannel(url, uri);

View File

@@ -148,9 +148,18 @@
<xsl:for-each select="$localdoc/*[@insertbefore=$tag]">
<xsl:apply-templates select="."/>
</xsl:for-each>
<xsl:choose>
<xsl:when test="$localdoc/*[@replace=$tag] and not($elem[@replace])">
<xsl:for-each select="$localdoc/*[@replace=$tag]">
<xsl:apply-templates select="."/>
</xsl:for-each>
</xsl:when>
<xsl:otherwise>
<xsl:for-each select="$elem">
<xsl:copy><xsl:apply-templates select="node()"/></xsl:copy>
</xsl:for-each>
</xsl:otherwise>
</xsl:choose>
<xsl:for-each select="$localdoc/*[@insertafter=$tag]">
<xsl:apply-templates select="."/>
</xsl:for-each>
@@ -168,7 +177,7 @@
<xsl:with-param name="elem" select="self::node()"/>
</xsl:call-template>
</xsl:template>
<xsl:template match="liberator:*[@tag]">
<xsl:template match="liberator:*[@tag and not(@replace)]">
<xsl:call-template name="splice-locals">
<xsl:with-param name="tag" select="substring-before(concat(@tag, ' '), ' ')"/>
<xsl:with-param name="elem" select="self::node()"/>

View File

@@ -10,100 +10,49 @@
xmlns:html="http://www.w3.org/1999/xhtml">
<tags>all</tags>
<!-- TODO: this should be generated by the Makefile in the same order as
config.helpFiles -->
<include href="intro" tag="intro.html"/>
<tags>intro.html</tags>
<include href="starting" tag="starting.html"/>
<include href="intro"/>
<include href="browsing" tag="browsing.html"/>
<tags>tutorial.html</tags>
<include href="buffer" tag="buffer.html"/>
<include href="tutorial"/>
<include href="cmdline" tag="cmdline.html"/>
<tags>starting.html</tags>
<include href="insert" tag="insert.html"/>
<include href="starting"/>
<include href="options" tag="options.html"/>
<tags>browsing.html</tags>
<include href="pattern" tag="pattern.html"/>
<include href="browsing"/>
<include href="tabs" tag="tabs.html"/>
<tags>buffer.html</tags>
<include href="hints" tag="hints.html"/>
<include href="buffer"/>
<include href="map" tag="map.html"/>
<tags>cmdline.html</tags>
<include href="eval" tag="eval.html"/>
<include href="cmdline"/>
<include href="marks" tag="marks.html"/>
<tags>insert.html</tags>
<include href="repeat" tag="repeat.html"/>
<include href="insert"/>
<include href="autocommands" tag="autocommands.html"/>
<tags>options.html</tags>
<include href="print" tag="print.html"/>
<include href="options"/>
<include href="gui" tag="gui.html"/>
<tags>pattern.html</tags>
<include href="styling" tag="styling.html"/>
<include href="pattern"/>
<include href="message" tag="message.html"/>
<tags>tabs.html</tags>
<include href="developer" tag="developer.html"/>
<include href="tabs"/>
<include href="various" tag="various.html"/>
<tags>hints.html</tags>
<include href="hints"/>
<tags>map.html</tags>
<include href="map"/>
<tags>eval.html</tags>
<include href="eval"/>
<tags>marks.html</tags>
<include href="marks"/>
<tags>repeat.html</tags>
<include href="repeat"/>
<tags>autocommands.html</tags>
<include href="autocommands"/>
<tags>print.html</tags>
<include href="print"/>
<tags>gui.html</tags>
<include href="gui"/>
<tags>styling.html</tags>
<include href="styling"/>
<tags>message.html</tags>
<include href="message"/>
<tags>developer.html</tags>
<include href="developer"/>
<tags>various.html</tags>
<include href="various"/>
<tags>index.html</tags>
<include href="index"/>
<include href="index" tag="index.html"/>
</document>
<!-- vim:se sts=4 sw=4 et: -->

View File

@@ -41,22 +41,7 @@
<p>Available <a>events</a>:</p>
<dl>
<dt>BookmarkAdd</dt> <dd>Triggered after a page is bookmarked</dd>
<dt>ColorScheme</dt> <dd>Triggered after a color scheme has been loaded</dd>
<dt>DOMLoad</dt> <dd>Triggered when a page's DOM content has fully loaded</dd>
<dt>DownloadPost</dt> <dd>Triggered when a download has completed</dd>
<dt>Fullscreen</dt> <dd>Triggered when the browser's fullscreen state changes</dd>
<dt>LocationChange</dt> <dd>Triggered when changing tabs or when navigating to a new location</dd>
<dt>PageLoadPre</dt> <dd>Triggered after a page load is initiated</dd>
<dt>PageLoad</dt> <dd>Triggered when a page gets (re)loaded/opened</dd>
<dt>PrivateMode</dt> <dd>Triggered when private mode is activated or deactivated</dd>
<dt>Sanitize</dt> <dd>Triggered when privata data are sanitized</dd>
<dt>ShellCmdPost</dt> <dd>Triggered after executing a shell command with <ex>:!</ex><a>cmd</a></dd>
<dt>VimperatorEnter</dt> <dd>Triggered after Firefox starts</dd>
<dt>VimperatorLeavePre</dt><dd>Triggered before exiting Firefox, just before destroying each module</dd>
<dt>VimperatorLeave</dt> <dd>Triggered before exiting Firefox</dd>
</dl>
<dl tag="autocommand-list"/>
<p><a>pat</a> is a regular expression, use .* if you want to match all URLs.</p>
@@ -64,19 +49,7 @@
<p>The following keywords are available where relevant:</p>
<dl>
<dt>&lt;url></dt> <dd>The URL against which the event was selected.</dd>
<dt>&lt;title></dt> <dd>The page, bookmark or download title.</dd>
<dt>&lt;doc></dt> <dd>The document for which the event occurred. Only for <em>DOMLoad</em>, <em>PageLoad</em> and <em>PageLoadPre</em>.</dd>
<dt>&lt;tab></dt> <dd>The tab in which the event occurred. Only for <em>DOMLoad</em>, <em>PageLoad</em> and <em>PageLoadPre</em>.</dd>
<dt>&lt;tags></dt> <dd>The tags applied to &lt;url>. Only for <em>BookmarkAdd</em>.</dd>
<dt>&lt;keyword></dt> <dd>The keywords applied to the bookmark. Only for <em>BookmarkAdd</em>.</dd>
<dt>&lt;icon></dt> <dd>The icon associated with &lt;url>. Only for <em>BookmarkAdd</em>.</dd>
<dt>&lt;size></dt> <dd>The size of a downloaded file. Only for <em>DownloadPost</em>.</dd>
<dt>&lt;file></dt> <dd>The target destination of a download. Only for <em>DownloadPost</em>.</dd>
<dt>&lt;state></dt> <dd>The new state. Only for "Fullscreen" and <em>PrivateMode</em>.</dd>
<dt>&lt;name></dt> <dd>The name of the item. Only for <em>ColorScheme</em> and <em>Sanitize</em>.</dd>
</dl>
<dl tag="autocommand-args"/>
</description>
</item>

View File

@@ -100,14 +100,6 @@ have 2 possibilities:
The items which are completed on <k name="Tab"/> are specified in the <o>complete</o>
option.
</p>
<p>
Sometimes, you might not be aware if you already have a certain page loaded in
some background tab or not. Therefore you can just type <ex>:open facebook<k name="Tab"/></ex>
and switch to it if Facebook is already open, or otherwise open it (if you
have Facebook in your bookmarks or history cache). This behavior can be turned
off by removing "t" from your <o>complete</o> option.
</p>
</description>
</item>

View File

@@ -56,7 +56,7 @@
<p>Open a &liberator.host; dialog.</p>
<p>Available dialogs:</p>
<dl>
<dl tag="dialog-list">
<dt>about</dt> <dd>About Mozilla &liberator.host;;</dd>
<dt>addbookmark</dt> <dd>Add bookmark for the current page</dd>
<dt>addons</dt> <dd>Manage Add-ons</dd>

View File

@@ -300,7 +300,7 @@ This file contains a list of all available commands, mappings and options.
<dt><ex>:marks</ex></dt> <dd>Show all location marks of current web page</dd>
<dt><ex>:messages</ex></dt> <dd>Display previously given messages</dd>
<dt><ex>:messclear</ex></dt> <dd>Clear the message history</dd>
<dt><ex>:mkvimperatorrc</ex></dt> <dd>Write current key mappings and changed options to the config file</dd>
<dt><ex>:mk&liberator.name;rc</ex></dt> <dd>Write current key mappings and changed options to the config file</dd>
<dt><ex>:nmap</ex></dt> <dd>Map a key sequence in Normal mode</dd>
<dt><ex>:nmapclear</ex></dt> <dd>Remove all mappings in Normal mode</dd>
<dt><ex>:nnoremap</ex></dt> <dd>Map a key sequence without remapping keys in Normal mode</dd>

View File

@@ -37,7 +37,7 @@
<warning>
Mappings are NOT saved between sessions, make sure you put them in your
vimperatorrc file!
&liberator.name;rc file!
</warning>
<h3 tag=":map-commands">Map commands</h3>

View File

@@ -765,9 +765,9 @@
<description>
<p>
Load plugin scripts when starting up. When on, yet unloaded plugins
are automatically loaded after the vimperatorrc file has been
are automatically loaded after the &liberator.name;rc file has been
sourced. To load plugins earlier, use the <ex>:loadplugins</ex>
command within the vimperatorrc.
command within the &liberator.name;rc.
</p>
</description>
</item>
@@ -936,13 +936,13 @@
<item>
<tags>$VIMPERATOR_RUNTIME</tags>
<tags>$&liberator.idname;_RUNTIME</tags>
<tags>'rtp' 'runtimepath'</tags>
<spec>'runtimepath' 'rtp'</spec>
<type>stringlist</type>
<default type="plain"><str>$VIMPERATOR_RUNTIME</str> or
Unix, Mac: <str>~/.vimperator</str>,
Windows: <str>~/vimperator</str></default>
<default type="plain"><str>$&liberator.idname;_RUNTIME</str> or
Unix, Mac: <str>~/.&liberator.name;</str>,
Windows: <str>~/&liberator.name;</str></default>
<description>
<p>List of directories searched for runtime files:</p>
@@ -954,16 +954,16 @@
<p>Example:</p>
<code><ex>:set runtimepath=$$~/myvimperator,~/.vimperator$$</ex></code>
<code><ex>:set runtimepath=<str>~/my&liberator.name;,~/.&liberator.name;<str></ex></code>
<p>
This will search for plugins in both
<str>~/myvimperator/plugin</str> and
<str>~/.vimperator/plugin</str>
<str>~/my&liberator.name;/plugin</str> and
<str>~/.&liberator.name;/plugin</str>
</p>
<p>
On startup, if the environment variable <em>$VIMPERATOR_RUNTIME</em> does not
On startup, if the environment variable <em>$&liberator.idname;_RUNTIME</em> does not
exist, &liberator.appname; will set it to match this value.
</p>
</description>

View File

@@ -138,8 +138,8 @@ function hello2() {
<p>are only available within the scope of the script.</p>
<p>
The <tt>.vimperatorrc</tt> file in your home directory and any
files in <tt>~/.vimperator/plugin/</tt> are always
The <tt>.&liberator.name;rc</tt> file in your home directory and any
files in <tt>~/.&liberator.name;/plugin/</tt> are always
sourced at startup. <tt>~</tt> is supported as a
shortcut for the <tt>$HOME</tt> directory. If <oa>!</oa> is
specified, errors are not printed.
@@ -154,8 +154,8 @@ function hello2() {
<description>
<p>
Load all unloaded plugins immediately. Because plugins are automatically
loaded after vimperatorrc is sourced, this command must be placed early
in the vimperatorrc file if vimperatorrc also includes commands that are
loaded after &liberator.name;rc is sourced, this command must be placed early
in the &liberator.name;rc file if &liberator.name;rc also includes commands that are
implemented by plugins. Additionally, this command allows for sourcing
new plugins without restarting &liberator.appname;.
</p>

View File

@@ -13,9 +13,9 @@
<tags>startup-options</tags>
<p>
Command-line options can be passed to &liberator.appname; via the -vimperator &liberator.host;
Command-line options can be passed to &liberator.appname; via the -&liberator.name; &liberator.host;
option. These are passed as single string argument.
E.g., firefox -vimperator <str>++cmd 'set exrc' +u 'tempRcFile' ++noplugin</str>
E.g., firefox -&liberator.name; <str>++cmd 'set exrc' +u 'tempRcFile' ++noplugin</str>
</p>
<item>
@@ -79,16 +79,16 @@
and no further locations are tried.
<ol>
<li tag="$VIMPERATOR_INIT">
<em>$VIMPERATOR_INIT</em> — May contain a single Ex command (e.g.,
<li tag="$&liberator.idname;_INIT">
<em>$&liberator.idname;_INIT</em> — May contain a single Ex command (e.g.,
"<ex>:source <a>file</a></ex>").
</li>
<li tag="$MY_VIMPERATORRC">
<em>~/vimperatorrc</em> — Windows only. If this file exists, its contents
are executed and <em>$MY_VIMPERATORRC</em> set to its path.
<li tag="$MY_&liberator.idname;RC">
<em>~/&liberator.name;rc</em> — Windows only. If this file exists, its contents
are executed and <em>$MY_&liberator.idname;RC</em> set to its path.
</li>
<li>
<em>~/.vimperatorrc</em> — If this file exists, its contents are executed.
<em>~/.&liberator.name;rc</em> — If this file exists, its contents are executed.
</li>
</ol>
</li>
@@ -125,13 +125,13 @@ it finds.
<h2 tag="save-settings">Saving settings</h2>
<item>
<tags>:mkv :mkvimperatorrc</tags>
<tags>:mkv :mk&liberator.name;rc</tags>
<spec>:mkv<oa>imperatorrc</oa><oa>!</oa> <oa>file</oa></spec>
<description>
<p>
Write current key mappings and changed options to <oa>file</oa>. If no
<oa>file</oa> is specified then <em>~/.vimperatorrc</em> is written unless this file
already exists. The special version <ex>:mkvimperatorrc!</ex> will overwrite
<oa>file</oa> is specified then <em>~/.&liberator.name;rc</em> is written unless this file
already exists. The special version <ex>:mk&liberator.name;rc!</ex> will overwrite
<oa>file</oa> if it exists.
</p>

View File

@@ -1,349 +0,0 @@
/* keep the mozdev header */
/* @import url(http://www.mozdev.org/skin/color/mozdev2k.css); */
/*
CSS stylesheet for XHTML produced by DocBook XSL stylesheets.
Tested with XSL stylesheets 1.61.2, 1.67.2
*/
span.strong {
font-weight: bold;
}
a {
color: #4A708B;
text-decoration: none;
}
body blockquote {
margin-top: .75em;
line-height: 1.5;
margin-bottom: .75em;
}
html body {
/*margin: 1em 5% 1em 5%;*/
margin: auto;
padding-left: 25px;
padding-right: 25px;
line-height: 1.2;
font-family: -moz-fixed;
max-width: 800px;
}
body div {
margin: 0;
}
h1, h2, h3, h4, h5, h6,
div.toc p b,
div.list-of-figures p b,
div.list-of-tables p b,
div.abstract p.title
{
color: #527bbd;
}
div.toc p:first-child,
div.list-of-figures p:first-child,
div.list-of-tables p:first-child,
div.example p.title
{
margin-bottom: 0.1em;
}
body h1 {
margin: .0em 0 0 -4%;
line-height: 1.3;
border-bottom: 1px solid silver;
}
body h2 {
/* necessary, because we put h2 into tables */
margin-top: 20px !important;
margin-bottom: 0px !important;
line-height: 1.3;
/*border-bottom: 1px solid silver;*/
}
body h3 {
margin: .8em 0 0 -3%;
line-height: 1.3;
}
body h4 {
margin: .8em 0 0 -3%;
line-height: 1.3;
}
body h5 {
margin: .8em 0 0 -2%;
line-height: 1.3;
}
body h6 {
margin: .8em 0 0 -1%;
line-height: 1.3;
}
body hr {
border: none; /* Broken on IE6 */
}
div.footnotes hr {
border: 1px solid silver;
}
div.navheader th, div.navheader td, div.navfooter td {
font-size: 0.9em;
font-weight: bold;
color: #527bbd;
}
div.navheader img, div.navfooter img {
border-style: none;
}
div.navheader a, div.navfooter a {
font-weight: normal;
}
div.navfooter hr {
border: 1px solid silver;
}
body td {
line-height: 1.2
}
body th {
line-height: 1.2;
}
ol {
line-height: 1.2;
}
ul, body dir, body menu {
line-height: 1.2;
}
html {
margin: 0;
padding: 0;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
margin-left: 0
}
body pre {
margin: 0.5em 10% 0.5em 1em;
line-height: 1.2;
color: navy;
}
tt.literal, code.literal {
color: navy;
}
.programlisting, .screen, .listingblock {
border: 1px solid silver;
background: #f4f4f4;
margin: 0.5em 10% 0.5em 0;
padding: 0.5em 1em;
}
div.sidebar {
background: #ffffee;
margin: 1.0em 10% 0.5em 0;
padding: 0.5em 1em;
border: 1px solid silver;
}
div.sidebar * { padding: 0; }
div.sidebar div { margin: 0; }
div.sidebar p.title {
margin-top: 0.5em;
margin-bottom: 0.2em;
}
div.bibliomixed {
margin: 0.5em 5% 0.5em 1em;
}
#footer {
margin: 15px;
text-align: center;
color: gray;
}
div.glossary dt {
font-weight: bold;
}
div.glossary dd p {
margin-top: 0.2em;
}
dl {
margin: .8em 0;
line-height: 1.2;
}
dt {
margin-top: 0.5em;
}
dt span.term {
font-style: italic;
}
div.variablelist dd p {
margin-top: 0;
}
div.itemizedlist li, div.orderedlist li {
margin-left: -0.8em;
margin-top: 0.5em;
}
ul, ol {
list-style-position: outside;
}
div.sidebar ul, div.sidebar ol {
margin-left: 2.8em;
}
div.itemizedlist p.title,
div.orderedlist p.title,
div.variablelist p.title
{
margin-bottom: -0.8em;
}
div.revhistory table {
border-collapse: collapse;
border: none;
}
div.revhistory th {
border: none;
color: #527bbd;
}
div.revhistory td {
border: 1px solid silver;
}
/* Keep TOC and index lines close together. */
div.toc dl, div.toc dt,
div.list-of-figures dl, div.list-of-figures dt,
div.list-of-tables dl, div.list-of-tables dt,
div.indexdiv dl, div.indexdiv dt
{
line-height: normal;
margin-top: 0;
margin-bottom: 0;
}
/*
Table styling does not work because of overriding attributes in
generated HTML.
*/
div.table table,
div.informaltable table
{
margin-left: 0;
margin-right: 5%;
margin-bottom: 0.8em;
}
div.informaltable table
{
margin-top: 0.4em
}
div.table thead,
div.table tfoot,
div.table tbody,
div.informaltable thead,
div.informaltable tfoot,
div.informaltable tbody
{
/* No effect in IE6. */
border-top: 2px solid #527bbd;
border-bottom: 2px solid #527bbd;
}
div.table thead, div.table tfoot,
div.informaltable thead, div.informaltable tfoot
{
font-weight: bold;
}
div.mediaobject img {
border: 1px solid silver;
margin-bottom: 0.8em;
}
div.figure p.title,
div.table p.title
{
margin-top: 1em;
margin-bottom: 0.4em;
}
@media print {
div.navheader, div.navfooter { display: none; }
}
/* my additions */
span.tag, span.hiddentag {
font-weight: bold;
color: rgb(255, 0, 255); /* magenta */
padding-left: 15px;
float: right;
}
/* inside a table cell means this tag is part of a section */
td span.tag {
padding-top: 25px !important;
}
div.key {
color: rgb(255, 0, 255); /* magenta */
min-width: 120px; /* with 20px padding actually 140px */
/*padding-bottom: 5px;*/
padding-right: 20px;
float: left;
}
span.warning {
font-weight: bold;
color: red;
}
span.info {
font-weight: bold;
color: blue;
}
fieldset.paypal {
border: none;
}
.argument {
color: #6A97D4;
}
.command {
font-weight: bold;
color: #632610;
white-space: nowrap;
}
.mapping {
font-weight: bold;
color: #102663;
}
.option {
font-weight: bold;
color: #106326;
}
.option, .mapping, .command {
text-decoration: none;
}
.option:hover, .mapping:hover, .command:hover {
text-decoration: underline;
}
.quoteblock {
margin-left: 140px;
padding-bottom: 10px;
}

View File

@@ -1,6 +1,7 @@
<!ENTITY liberator.mainWindow "main-window">
<!ENTITY liberator.name "vimperator">
<!ENTITY liberator.idname "VIMPERATOR">
<!ENTITY liberator.appname "Vimperator">
<!ENTITY liberator.host "Firefox">
<!ENTITY liberator.statusBefore "statusbar-display">

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="chrome://liberator/content/help.xsl"?>
<!DOCTYPE overlay SYSTEM "chrome://liberator/content/liberator.dtd">
<overlay
xmlns="http://vimperator.org/namespaces/liberator"
xmlns:html="http://www.w3.org/1999/xhtml">
<include href="tutorial" tag="tutorial.html" insertafter="intro.html" />
</overlay>
<!-- vim:se sts=4 sw=4 et: -->

View File

@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="chrome://liberator/content/help.xsl"?>
<!DOCTYPE overlay SYSTEM "chrome://liberator/content/liberator.dtd">
<overlay
xmlns="http://vimperator.org/namespaces/liberator"
xmlns:html="http://www.w3.org/1999/xhtml">
<dl tag="autocommand-list" replace="autocommand-list">
<dt>BookmarkAdd</dt> <dd>Triggered after a page is bookmarked</dd>
<dt>ColorScheme</dt> <dd>Triggered after a color scheme has been loaded</dd>
<dt>DOMLoad</dt> <dd>Triggered when a page's DOM content has fully loaded</dd>
<dt>DownloadPost</dt> <dd>Triggered when a download has completed</dd>
<dt>Fullscreen</dt> <dd>Triggered when the browser's fullscreen state changes</dd>
<dt>LocationChange</dt> <dd>Triggered when changing tabs or when navigating to a new location</dd>
<dt>PageLoadPre</dt> <dd>Triggered after a page load is initiated</dd>
<dt>PageLoad</dt> <dd>Triggered when a page gets (re)loaded/opened</dd>
<dt>PrivateMode</dt> <dd>Triggered when private mode is activated or deactivated</dd>
<dt>Sanitize</dt> <dd>Triggered when privata data are sanitized</dd>
<dt>ShellCmdPost</dt> <dd>Triggered after executing a shell command with <ex>:!</ex><a>cmd</a></dd>
<dt>VimperatorEnter</dt> <dd>Triggered after Firefox starts</dd>
<dt>VimperatorLeavePre</dt><dd>Triggered before exiting Firefox, just before destroying each module</dd>
<dt>VimperatorLeave</dt> <dd>Triggered before exiting Firefox</dd>
</dl>
<dl tag="autocommand-args" replace="autocommand-args">
<dt>&lt;url></dt> <dd>The URL against which the event was selected.</dd>
<dt>&lt;title></dt> <dd>The page, bookmark or download title.</dd>
<dt>&lt;doc></dt> <dd>The document for which the event occurred. Only for <em>DOMLoad</em>, <em>PageLoad</em> and <em>PageLoadPre</em>.</dd>
<dt>&lt;tab></dt> <dd>The tab in which the event occurred. Only for <em>DOMLoad</em>, <em>PageLoad</em> and <em>PageLoadPre</em>.</dd>
<dt>&lt;tags></dt> <dd>The tags applied to &lt;url>. Only for <em>BookmarkAdd</em>.</dd>
<dt>&lt;keyword></dt> <dd>The keywords applied to the bookmark. Only for <em>BookmarkAdd</em>.</dd>
<dt>&lt;icon></dt> <dd>The icon associated with &lt;url>. Only for <em>BookmarkAdd</em>.</dd>
<dt>&lt;size></dt> <dd>The size of a downloaded file. Only for <em>DownloadPost</em>.</dd>
<dt>&lt;file></dt> <dd>The target destination of a download. Only for <em>DownloadPost</em>.</dd>
<dt>&lt;state></dt> <dd>The new state. Only for "Fullscreen" and <em>PrivateMode</em>.</dd>
<dt>&lt;name></dt> <dd>The name of the item. Only for <em>ColorScheme</em> and <em>Sanitize</em>.</dd>
</dl>
</overlay>
<!-- vim:se sts=4 sw=4 et: -->

View File

@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="chrome://liberator/content/help.xsl"?>
<!DOCTYPE overlay SYSTEM "chrome://liberator/content/liberator.dtd">
<overlay
xmlns="http://vimperator.org/namespaces/liberator"
xmlns:html="http://www.w3.org/1999/xhtml">
<dl tag="dialog-list" replace="dialog-list">
<dt>about</dt> <dd>About Mozilla &liberator.host;;</dd>
<dt>addbookmark</dt> <dd>Add bookmark for the current page</dd>
<dt>addons</dt> <dd>Manage Add-ons</dd>
<dt>bookmarks</dt> <dd>List your bookmarks</dd>
<dt>checkupdates</dt> <dd>Check for updates</dd>
<dt>cleardata</dt> <dd>Clear private data</dd>
<dt>cookies</dt> <dd>List your cookies</dd>
<dt>console</dt> <dd>JavaScript console</dd>
<dt>customizetoolbar</dt><dd>Customize the Toolbar</dd>
<dt>dominspector</dt> <dd>DOM Inspector</dd>
<dt>downloads</dt> <dd>Manage Downloads</dd>
<dt>history</dt> <dd>List your history</dd>
<dt>import</dt> <dd>Import Preferences, Bookmarks, History, etc. from other browsers</dd>
<dt>openfile</dt> <dd>Open the file selector dialog</dd>
<dt>pageinfo</dt> <dd>Show information about the current page</dd>
<dt>pagesource</dt> <dd>View page source</dd>
<dt>places</dt> <dd>Places Organizer: Manage your bookmarks and history</dd>
<dt>preferences</dt> <dd>Show &liberator.host; preferences dialog</dd>
<dt>printpreview</dt> <dd>Preview the page before printing</dd>
<dt>printsetup</dt> <dd>Setup the page size and orientation before printing</dd>
<dt>print</dt> <dd>Show print dialog</dd>
<dt>saveframe</dt> <dd>Save frame to disk</dd>
<dt>savepage</dt> <dd>Save page to disk</dd>
<dt>searchengines</dt> <dd>Manage installed search engines</dd>
<dt>selectionsource</dt> <dd>View selection source</dd>
</dl>
</overlay>
<!-- vim:se sts=4 sw=4 et: -->

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="chrome://liberator/content/help.xsl"?>
<!DOCTYPE overlay SYSTEM "chrome://liberator/content/liberator.dtd">
<overlay
xmlns="http://vimperator.org/namespaces/liberator"
xmlns:html="http://www.w3.org/1999/xhtml">
<item insertbefore=":set">
<tags>:seg :way</tags>
<spec>:se[a]</spec>
<description>
<p>Show all options that differ from their default value.</p>
</description>
</item>
<item insertafter=":set-default">
<tags>:sturm :drang</tags>
<spec>:und</spec>
<description>
<p>Show all options that differ from their default value.</p>
</description>
</item>
</overlay>
<!-- vim:se sts=4 sw=4 et: -->

View File

@@ -1,360 +0,0 @@
/* TODO: this file is a total debacle. Find out exactly which version it was
* based on and extract the Vimperator required modifications to a separate
* file. It's not called "Cascading" for nothing! --djk */
/* keep the mozdev header */
/* @import url(http://www.mozdev.org/skin/color/mozdev2k.css); */
/*
CSS stylesheet for XHTML produced by DocBook XSL stylesheets.
Tested with XSL stylesheets 1.61.2, 1.67.2
*/
span.strong {
font-weight: bold;
}
a {
color: #4A708B;
text-decoration: none;
}
body blockquote {
margin-top: .75em;
line-height: 1.5;
margin-bottom: .75em;
}
html body {
/*margin: 1em 5% 1em 5%;*/
margin: auto;
padding-left: 25px;
padding-right: 25px;
line-height: 1.2;
font-family: -moz-fixed;
max-width: 800px;
}
body div {
margin: 0;
}
h1, h2, h3, h4, h5, h6,
div.toc p b,
div.list-of-figures p b,
div.list-of-tables p b,
div.abstract p.title
{
color: #527bbd;
}
div.toc p:first-child,
div.list-of-figures p:first-child,
div.list-of-tables p:first-child,
div.example p.title
{
margin-bottom: 0.1em;
}
body h1 {
margin: .0em 0 0 -4%;
line-height: 1.3;
border-bottom: 1px solid silver;
}
body h2 {
/* necessary, because we put h2 into tables */
margin-top: 20px !important;
margin-bottom: 0px !important;
line-height: 1.3;
/*border-bottom: 1px solid silver;*/
}
body h3 {
margin: .8em 0 0 -3%;
line-height: 1.3;
}
body h4 {
margin: .8em 0 0 -3%;
line-height: 1.3;
}
body h5 {
margin: .8em 0 0 -2%;
line-height: 1.3;
}
body h6 {
margin: .8em 0 0 -1%;
line-height: 1.3;
}
body hr {
border: none; /* Broken on IE6 */
}
div.footnotes hr {
border: 1px solid silver;
}
div.navheader th, div.navheader td, div.navfooter td {
font-size: 0.9em;
font-weight: bold;
color: #527bbd;
}
div.navheader img, div.navfooter img {
border-style: none;
}
div.navheader a, div.navfooter a {
font-weight: normal;
}
div.navfooter hr {
border: 1px solid silver;
}
body td {
line-height: 1.2
}
body th {
line-height: 1.2;
}
ol {
line-height: 1.2;
}
ul, body dir, body menu {
line-height: 1.2;
}
html {
margin: 0;
padding: 0;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
margin-left: 0
}
body pre {
margin: 0.5em 10% 0.5em 1em;
line-height: 1.2;
color: navy;
}
tt.literal, code.literal {
color: navy;
}
.programlisting, .screen, .listingblock {
border: 1px solid silver;
background: #f4f4f4;
margin: 0.5em 10% 0.5em 0;
padding: 0.5em 1em;
}
div.sidebar {
background: #ffffee;
margin: 1.0em 10% 0.5em 0;
padding: 0.5em 1em;
border: 1px solid silver;
}
div.sidebar * { padding: 0; }
div.sidebar div { margin: 0; }
div.sidebar p.title {
margin-top: 0.5em;
margin-bottom: 0.2em;
}
div.bibliomixed {
margin: 0.5em 5% 0.5em 1em;
}
#footer {
margin: 15px;
text-align: center;
color: gray;
}
div.glossary dt {
font-weight: bold;
}
div.glossary dd p {
margin-top: 0.2em;
}
dl {
margin: .8em 0;
line-height: 1.2;
}
dt {
margin-top: 0.5em;
}
dt span.term {
font-style: italic;
}
div.variablelist dd p {
margin-top: 0;
}
div.itemizedlist li, div.orderedlist li {
margin-left: -0.8em;
margin-top: 0.5em;
}
ul, ol {
list-style-position: outside;
}
div.sidebar ul, div.sidebar ol {
margin-left: 2.8em;
}
div.itemizedlist p.title,
div.orderedlist p.title,
div.variablelist p.title
{
margin-bottom: -0.8em;
}
div.revhistory table {
border-collapse: collapse;
border: none;
}
div.revhistory th {
border: none;
color: #527bbd;
}
div.revhistory td {
border: 1px solid silver;
}
/* Keep TOC and index lines close together. */
div.toc dl, div.toc dt,
div.list-of-figures dl, div.list-of-figures dt,
div.list-of-tables dl, div.list-of-tables dt,
div.indexdiv dl, div.indexdiv dt
{
line-height: normal;
margin-top: 0;
margin-bottom: 0;
}
/*
Table styling does not work because of overriding attributes in
generated HTML.
*/
div.table table,
div.informaltable table
{
margin-left: 0;
margin-right: 5%;
margin-bottom: 0.8em;
}
div.informaltable table
{
margin-top: 0.4em
}
div.table thead,
div.table tfoot,
div.table tbody,
div.informaltable thead,
div.informaltable tfoot,
div.informaltable tbody
{
/* No effect in IE6. */
border-top: 2px solid #527bbd;
border-bottom: 2px solid #527bbd;
}
div.table thead, div.table tfoot,
div.informaltable thead, div.informaltable tfoot
{
font-weight: bold;
}
div.mediaobject img {
border: 1px solid silver;
margin-bottom: 0.8em;
}
div.figure p.title,
div.table p.title
{
margin-top: 1em;
margin-bottom: 0.4em;
}
@media print {
div.navheader, div.navfooter { display: none; }
}
/* my additions */
span.tag, span.hiddentag {
font-weight: bold;
color: rgb(255, 0, 255); /* magenta */
padding-left: 15px;
float: right;
}
/* inside a table cell means this tag is part of a section */
td span.tag {
padding-top: 25px !important;
}
span.key {
color: rgb(255, 0, 255); /* magenta */
min-width: 120px; /* with 20px padding actually 140px */
/*padding-bottom: 5px;*/
padding-right: 20px;
float: left;
}
span.warning {
font-weight: bold;
color: red;
}
span.info {
font-weight: bold;
color: blue;
}
fieldset.paypal {
border: none;
}
.argument {
color: #6A97D4;
}
.command {
font-weight: bold;
color: #632610;
white-space: nowrap;
}
.mapping {
font-weight: bold;
color: #102663;
}
.option {
font-weight: bold;
color: #106326;
}
.option, .mapping, .command {
text-decoration: none;
}
.option:hover, .mapping:hover, .command:hover {
text-decoration: underline;
}
.quoteblock {
margin-left: 140px;
padding-bottom: 10px;
}
/* FIXME: hack to match old table formatting with new table syntax - a possibly vain attempt to stop dpb's whinging. --djk */
p.table {
margin-top: 0;
margin-bottom: 0;
}
/* vim: set fdm=marker sw=4 ts=4 et: */

View File

@@ -1,6 +1,9 @@
<!ENTITY liberator.mainWindow "mainplayer">
<!ENTITY liberator.name "xulmus">
<!ENTITY liberator.appname "Xulmus">
<!ENTITY liberator.idname "XULMUS">
<!ENTITY liberator.host "Songbird">
<!ENTITY liberator.statusBefore "statusbar-display">
<!ENTITY liberator.statusAfter "">

View File

@@ -1,3 +0,0 @@
NAME = xulmus
BASE = ../../../common
include $(BASE)/Makefile.doc

View File

@@ -1,106 +0,0 @@
|all| +
// TODO: this should be generated by the Makefile in the same order as
// config.helpFiles
|intro.html|
include::intro.txt[]
//|tutorial.html|
//
//include::tutorial.txt[]
|player.html|
include::player.txt[]
|starting.html|
include::starting.txt[]
|browsing.html|
include::browsing.txt[]
|buffer.html|
include::buffer.txt[]
|cmdline.html|
include::cmdline.txt[]
|insert.html|
include::insert.txt[]
|options.html|
include::options.txt[]
|pattern.html|
include::pattern.txt[]
|tabs.html|
include::tabs.txt[]
|hints.html|
include::hints.txt[]
|map.html|
include::map.txt[]
|eval.html|
include::eval.txt[]
|marks.html|
include::marks.txt[]
|repeat.html|
include::repeat.txt[]
|autocommands.html|
include::autocommands.txt[]
|print.html|
include::print.txt[]
|gui.html|
include::gui.txt[]
|styling.html|
include::styling.txt[]
|message.html|
include::message.txt[]
|developer.html|
include::developer.txt[]
|various.html|
include::various.txt[]
//|version.html|
//
//include::version.txt[]
|index.html|
include::index.txt[]
// vim: set syntax=asciidoc:

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="chrome://liberator/content/help.xsl"?>
<!DOCTYPE overlay SYSTEM "chrome://liberator/content/liberator.dtd">
<overlay
xmlns="http://vimperator.org/namespaces/liberator"
xmlns:html="http://www.w3.org/1999/xhtml">
<include href="player" tag="player.html" insertafter="intro.html"/>
</overlay>
<!-- vim:se sts=4 sw=4 et: -->

View File

@@ -1,105 +0,0 @@
heading::Automatic{nbsp}commands[autocommands]
Autocommands are a way to automatically execute code when certain events
happen.
|:au| |:autocmd| +
||:au[tocmd]||
________________________________________________________________________________
Execute commands automatically on events.
[c]:au[tocmd][c] {event} {pat} {cmd}
If the *-javascript* (short name *-js*) option is specified, {cmd} is executed
as JavaScript code, with any supplied arguments available as variables.
Add {cmd} to the list of commands Xulmus will execute on {event} for a URL matching {pat}:
* [c]:autocmd[!][c] {events} {pat}: list/remove autocommands filtered by {events} and {pat}
* [c]:autocmd[!][c] {events}: list/remove autocommands matching {events}
* [c]:autocmd[!][c] * {pat}: list/remove autocommands matching {pat}
* [c]:autocmd[!][c]: list/remove all autocommands
Available {events}:
[frame="topbot",grid="none",cols="1,4"]
|===============================================================================
|*BookmarkAdd* |Triggered after a page is bookmarked
|*ColorScheme* |Triggered after a color scheme has been loaded
|*DOMLoad* |Triggered when a page's DOM content has fully loaded
|*DownloadPost* |Triggered when a download has completed
|*Fullscreen* |Triggered when the player's fullscreen state changes
|*LocationChange*|Triggered when changing tabs or when navigating to a new location
|*PageLoadPre* |Triggered after a page load is initiated
|*PageLoad* |Triggered when a page gets (re)loaded/opened
|*ShellCmdPost* |Triggered after executing a shell command with [c]:![c]#{cmd}
|*TrackChangePre*|Triggered before a playing track is changed
|*TrackChange* |Triggered after a playing track has changed
|*ViewChangePre* |Triggered before a sequencer view is changed
|*ViewChange* |Triggered after a sequencer view is changed
|*StreamStart* |Triggered after a stream has started
|*StreamPause* |Triggered after a stream has paused
|*StreamEnd* |Triggered after a stream has ended
|*StreamStop* |Triggered after a stream has stopped
|*XulmusEnter* |Triggered after Songbird starts
|*XulmusLeavePre*|Triggered before exiting Songbird, just before destroying each module
|*XulmusLeave* |Triggered before exiting Songbird
|===============================================================================
{pat} is a regular expression, use .* if you want to match all URLs.
Note: This differs from Vim which uses a glob rather than a regex for {pat}.
The following keywords are available where relevant:
[frame="topbot",grid="none",cols="1,4"]
|===============================================================================
|*<url>* |The URL against which the event was selected.
|*<title>* |The page, bookmark or download title.
|*<doc>* |The document for which the event occurred. Only for *DOMLoad*, *PageLoad* and *PageLoadPre*.
|*<tab>* |The tab in which the event occurred. Only for *DOMLoad*, *PageLoad* and *PageLoadPre*.
|*<tags>* |The tags applied to <url>. Only for *BookmarkAdd*.
|*<keyword>*|The keywords applied to the bookmark. Only for *BookmarkAdd*.
|*<icon>* |The icon associated with <url>. Only for *BookmarkAdd*.
|*<size>* |The size of a downloaded file. Only for *DownloadPost*.
|*<file>* |The target destination of a download. Only for *DownloadPost*.
|*<state>* |The new fullscreen state. Only for *Fullscreen*.
|*<name>* |The color scheme name. Only for *ColorScheme*.
|*<view>* |The new sequencer view. Only for *ViewChangePre* and *ViewChange*.
|*<track>* |The new media track. Only for *TrackChangePre*, *TrackChange* and *Stream\**.
|===============================================================================
________________________________________________________________________________
|:doautoa| |:doautoall|
||:doautoa[ll] {event} [a][url][a]|| +
________________________________________________________________________________
Apply the autocommands matching the specified URL to all buffers. If no
[a][url][a] is specified use the current URL.
________________________________________________________________________________
|:do| |:doautocmd|
||:do[autocmd] {event} [a][url][a]|| +
________________________________________________________________________________
Apply the autocommands matching the specified URL to the current buffer. If no
[a][url][a] is specified use the current URL.
________________________________________________________________________________
section::Examples[autocmd-examples]
Enable _passthrough_ mode on all Google sites:
\{nbsp}[c]:autocmd LocationChange .* js modes.passAllKeys = /google\.com/.test(buffer.URL)[c]
Enable _passthrough_ mode on *some* Google sites:
\{nbsp}[c]:autocmd LocationChange .* js modes.passAllKeys = /(www|mail)\.google\.com/.test(buffer.URL)[c]
Set the filetype to mail when editing email at Gmail:
\{nbsp}[c]:autocmd LocationChange .* :set editor=gvim\ -f[c] +
\{nbsp}[c]:autocmd LocationChange mail\.google\.com :set editor="gvim -f -c $$'set ft=mail'$$"[c]
// vim: set filetype=asciidoc:

View File

@@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="chrome://liberator/content/help.xsl"?>
<!DOCTYPE overlay SYSTEM "chrome://liberator/content/liberator.dtd">
<overlay
xmlns="http://vimperator.org/namespaces/liberator"
xmlns:html="http://www.w3.org/1999/xhtml">
<dl tag="autocommand-list" replace="autocommand-list">
<dt>BookmarkAdd</dt> <dd>Triggered after a page is bookmarked</dd>
<dt>ColorScheme</dt> <dd>Triggered after a color scheme has been loaded</dd>
<dt>DOMLoad</dt> <dd>Triggered when a page's DOM content has fully loaded</dd>
<dt>DownloadPost</dt> <dd>Triggered when a download has completed</dd>
<dt>Fullscreen</dt> <dd>Triggered when the player's fullscreen state changes</dd>
<dt>LocationChange</dt><dd>Triggered when changing tabs or when navigating to a new location</dd>
<dt>PageLoadPre</dt> <dd>Triggered after a page load is initiated</dd>
<dt>PageLoad</dt> <dd>Triggered when a page gets (re)loaded/opened</dd>
<dt>ShellCmdPost</dt> <dd>Triggered after executing a shell command with <ex>:!</ex>#{cmd}</dd>
<dt>TrackChangePre</dt><dd>Triggered before a playing track is changed</dd>
<dt>TrackChange</dt> <dd>Triggered after a playing track has changed</dd>
<dt>ViewChangePre</dt> <dd>Triggered before a sequencer view is changed</dd>
<dt>ViewChange</dt> <dd>Triggered after a sequencer view is changed</dd>
<dt>StreamStart</dt> <dd>Triggered after a stream has started</dd>
<dt>StreamPause</dt> <dd>Triggered after a stream has paused</dd>
<dt>StreamEnd</dt> <dd>Triggered after a stream has ended</dd>
<dt>StreamStop</dt> <dd>Triggered after a stream has stopped</dd>
<dt>XulmusEnter</dt> <dd>Triggered after Songbird starts</dd>
<dt>XulmusLeavePre</dt><dd>Triggered before exiting Songbird, just before destroying each module</dd>
<dt>XulmusLeave</dt> <dd>Triggered before exiting Songbird</dd>
</dl>
<dl tag="autocommand-args" replace="autocommand-args">
<dt>&lt;url></dt> <dd>The URL against which the event was selected.</dd>
<dt>&lt;title></dt> <dd>The page, bookmark or download title.</dd>
<dt>&lt;doc></dt> <dd>The document for which the event occurred. Only for <em>DOMLoad</em>, <em>PageLoad</em> and <em>PageLoadPre</em>.</dd>
<dt>&lt;tab></dt> <dd>The tab in which the event occurred. Only for <em>DOMLoad</em>, <em>PageLoad</em> and <em>PageLoadPre</em>.</dd>
<dt>&lt;tags></dt> <dd>The tags applied to &lt;url>. Only for <em>BookmarkAdd</em>.</dd>
<dt>&lt;keyword></dt><dd>The keywords applied to the bookmark. Only for <em>BookmarkAdd</em>.</dd>
<dt>&lt;icon></dt> <dd>The icon associated with &lt;url>. Only for <em>BookmarkAdd</em>.</dd>
<dt>&lt;size></dt> <dd>The size of a downloaded file. Only for <em>DownloadPost</em>.</dd>
<dt>&lt;file></dt> <dd>The target destination of a download. Only for <em>DownloadPost</em>.</dd>
<dt>&lt;state></dt> <dd>The new fullscreen state. Only for <em>Fullscreen</em>.</dd>
<dt>&lt;name></dt> <dd>The color scheme name. Only for <em>ColorScheme</em>.</dd>
<dt>&lt;view></dt> <dd>The new sequencer view. Only for <em>ViewChangePre</em> and <em>ViewChange</em>.</dd>
<dt>&lt;track></dt> <dd>The new media track. Only for <em>TrackChangePre</em>, <em>TrackChange</em> and <em>Stream</em>.</dd>
</dl>
</overlay>
<!-- vim:se sts=4 sw=4 et: -->

View File

@@ -1,339 +0,0 @@
heading::Browsing[surfing,browsing]
|surfing| |browsing| +
Xulmus overrides nearly all Songbird keys in order to make browsing more
pleasant for Vim users. On the rare occasions when you want to pass a keystroke
to Songbird, or to the web page, and have it retain its original meaning you
have 2 possibilities:
|pass-through| |<C-z>| |CTRL-Z| +
||CTRL-Z||
________________________________________________________________________________
Disable all Xulmus keys except [m]<Esc>[m] 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 [m]<Esc>[m]. If you also need to pass [m]<Esc>[m] in
this mode to the web page, prepend it with [m]<C-v>[m].
________________________________________________________________________________
|send-key| |<C-v>| |CTRL-V| +
||CTRL-V||
________________________________________________________________________________
If you only need to pass a single key to a JavaScript form field or another
extension prefix the key with [m]<C-v>[m]. Also works to unshadow Songbird
shortcuts like [m]<C-o>[m] which are otherwise hidden in Xulmus. When
Xulmus mode is temporarily disabled with [m]<C-z>[m], [m]<C-v>[m] will pass
the next key to Xulmus instead of the web page.
________________________________________________________________________________
section::Opening{nbsp}web{nbsp}pages[opening]
|o| |:o| |:open|
||:o[pen] [a][arg1][a], [a][arg2][a], ...|| +
||o||
________________________________________________________________________________
Open one or more URLs in the current tab.
Multiple URLs can be separated with 'urlseparator' (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:
1. Opened as a local file if it is an existing relative or absolute filename.
- [c]:open /etc/fstab[c] shows the file system table.
- [c]:open ../other/foo.html[c] in your home directory opens
[a]/home/other/foo.html[a]
2. 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 ([c]:open wikipedia
linus torvalds[c] 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 [c]:dialog searchengines[c].
3. Opened with the default search engine or keyword (specified with the
'defsearch' option) if the first word is no search engine ([c]:open linus
torvalds[c] opens a Google search for linus torvalds).
4. Passed directly to Songbird in all other cases ([c]:open www.osnews.com,
www.slashdot.org[c] opens OSNews in the current, and Slashdot in a new
background tab).
You can use [c]:open -tags linux torvalds<Tab>[c] 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 [m]<Tab>[m] are specified in the 'complete'
option.
________________________________________________________________________________
|t| |:t| |:tabopen| |:tabnew| |:tabe| |:tabedit|
||:tabopen[!] [a][arg1][a], [a][arg2][a], ...|| +
||t||
________________________________________________________________________________
Just like [c]:open[c] but also uses a new tab for the first URL. When
used with [!], the *tabopen* value of the 'activate' option is negated.
________________________________________________________________________________
|T| +
||T||
________________________________________________________________________________
Show a [c]:tabopen[c] prompt containing the current URL. Useful if you want to
go somewhere by editing the URL of the current page.
________________________________________________________________________________
|:tabdu| |:tabduplicate|
||:[count]tabdu[plicate][!]|| +
________________________________________________________________________________
Duplicates current tab [count] times. Uses *tabopen* value of the 'activate'
option to determine if the last cloned tab should be activated. When used with
[!], *tabopen* value is negated.
________________________________________________________________________________
|O| +
||O||
________________________________________________________________________________
Show an [c]:open[c] prompt containing the current URL. Useful if you want to
go somewhere by editing the URL of the current page.
________________________________________________________________________________
|<MiddleMouse>| |p| +
||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
'defsearch' option) with [m]p[m].
________________________________________________________________________________
|P| +
||P||
________________________________________________________________________________
Open (put) a URL based on the current clipboard contents in a new buffer. Works
like [m]p[m] but opens a new tab. +
Whether the new buffer is activated, depends on the 'activate' option.
________________________________________________________________________________
|gP| +
||gP||
________________________________________________________________________________
Open (put) a URL based on the current clipboard contents in a new buffer.
Works like [m]P[m] but inverts the 'activate' option.
________________________________________________________________________________
|<C-x>|
||[count]<C-x>||
________________________________________________________________________________
Decrements the last number in URL by 1, or by [count] if given. Negative
numbers are not supported, as this is not generally useful, so the number cannot
be decremented past 0.
________________________________________________________________________________
|<C-a>|
||[count]<C-a>||
________________________________________________________________________________
Increments the last number in URL by 1, or by [count] if given.
________________________________________________________________________________
|$$~$$| +
||$$~$$||
________________________________________________________________________________
Open home directory. You can also use the hints and have the probably fastest
file browser on earth. :)
________________________________________________________________________________
section::Navigating[navigating]
|H| |<C-o>| |CTRL-O| |:ba| |:back|
||:[count]ba[ck] [a][url][a]|| +
||:ba[ck]!|| +
||CTRL-o||
________________________________________________________________________________
Go [count] pages back in the browser history. If [url] is specified go back to
the first matching URL. The special version [c]:back![c] goes to the beginning
of the browser history.
________________________________________________________________________________
|L| |<C-i>| |CTRL-i| |:fo| |:fw| |:forward|
||:[count]fo[rward] [a][url][a]|| +
||:fo[rward]!|| +
||CTRL-i||
________________________________________________________________________________
Go [count] pages forward in the browser history. If [url] is specified go
forward to the first matching URL. The special version [c]:forward![c] goes to
the end of the browser history.
________________________________________________________________________________
|:ju| |:jumps|
||:ju[mps]||
________________________________________________________________________________
List all jumps aka current tab's history aka session history.
Current history position is marked with >, jump numbers are counters to be used
with [c]:back[c] (above zero record) or [c]:forward[c] (below zero record).
________________________________________________________________________________
|gh|
||gh||
________________________________________________________________________________
Go home. Opens the homepage in the current tab.
________________________________________________________________________________
|gH| +
||gH||
________________________________________________________________________________
Go home in a new tab. Opens the homepage in a new tab. Whether the new tab is
activated or not depends on the 'activate' option.
________________________________________________________________________________
|gu|
||[count]gu||
________________________________________________________________________________
Go to [count]th parent directory. +
[m]2gu[m] on _http://www.example.com/dir1/dir2/file.htm_ opens
_http://www.example.com/dir1/_.
________________________________________________________________________________
|gU|
||gU||
________________________________________________________________________________
Go to the root of the web site. +
[m]gU[m] on _http://www.example.com/dir1/dir2/file.htm_ opens
_http://www.example.com/_.
When browsing a local directory, it goes to the root directory.
________________________________________________________________________________
section::Reloading[reloading]
|r|
||r||
________________________________________________________________________________
Force reloading of the current web page.
________________________________________________________________________________
|R|
||R||
________________________________________________________________________________
Force reloading of the current web page skipping the cache.
________________________________________________________________________________
|:re| |:reload| +
||:re[load][!]||
________________________________________________________________________________
Reload current web page. Forces reloading of the current page. If [!] is given,
skip the cache.
________________________________________________________________________________
|:reloada| |:reloadall| +
||:reloada[ll][!]||
________________________________________________________________________________
Reload all pages. Forces reloading of all pages. If [!] is given, skip the cache.
________________________________________________________________________________
section::Stopping[stopping]
|<C-c>|
||<C-c>||
________________________________________________________________________________
Stop loading the current web page.
________________________________________________________________________________
|:st| |:stop|
||:st[op]||
________________________________________________________________________________
Stop loading the current web page.
________________________________________________________________________________
|:stopa| |:stopall| +
||:stopa[ll]||
________________________________________________________________________________
Stop loading all web pages.
________________________________________________________________________________
section::Writing[writing,save-file]
|:w| |:write| |:sav| |:saveas| +
||:sav[eas][!] [a][file][a]||
________________________________________________________________________________
Save current web page to disk. If [a][file][a] is omitted, save to the page's
default filename. Existing documents will only be overwritten if [!] is given.
________________________________________________________________________________
section::Quitting[quitting,save-session]
|:q| |:quit| +
||:q[uit]||
________________________________________________________________________________
Quit current tab. If this is the last tab in the window, close the window. If
this was the last window, close Xulmus. When quitting Xulmus, the
session is not stored.
________________________________________________________________________________
|:qa| |:qall| |:quita| |:quitall| +
||:quita[ll]||
________________________________________________________________________________
Quit Xulmus. Quit Xulmus, no matter how many tabs/windows are open.
The session is not stored.
________________________________________________________________________________
|:xa| |:xall| |:wq| |:wqa| |:wqall|
||:wqa[ll]|| +
||:xa[ll]||
________________________________________________________________________________
Save the session and quit. Quit Xulmus, no matter how many tabs/windows
are open. The session is stored. [c]:wq[c] 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.
________________________________________________________________________________
|ZQ|
||ZQ||
________________________________________________________________________________
Quit and don't save the session. Works like [c]:qall[c].
________________________________________________________________________________
|ZZ|
||ZZ||
________________________________________________________________________________
Quit and save the session. Quit Xulmus, no matter how many tabs/windows
are open. The session is stored. Works like [c]:xall[c].
________________________________________________________________________________
section::The{nbsp}current{nbsp}directory[current-directory]
|:chd| |:chdir| |:cd|
||:cd [-|path]||
________________________________________________________________________________
Change the current directory. [c]:cd -[c] changes to the last directory.
________________________________________________________________________________
|:pw| |:pwd|
||:pw[d]||
________________________________________________________________________________
Print the current directory name.
________________________________________________________________________________
// vim: set filetype=asciidoc:

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="chrome://liberator/content/help.xsl"?>
<!DOCTYPE overlay SYSTEM "chrome://liberator/content/liberator.dtd">
<overlay
xmlns="http://vimperator.org/namespaces/liberator"
xmlns:html="http://www.w3.org/1999/xhtml">
<span replace="w"/>
<span replace="W"/>
<span replace=":wc"/>
<span replace=":winon"/>
</overlay>
<!-- vim:se sts=4 sw=4 et: -->

View File

@@ -1,378 +0,0 @@
heading::Buffer[buffer,document]
Xulmus holds exactly one buffer object for each tab. It is usually an
(X)HTML document with advanced features.
section::Buffer{nbsp}information[buffer-information]
|<C-g>| +
||<C-g>||
________________________________________________________________________________
Print the current file name. Also shows some additional file information like
file size or the last modified date.
________________________________________________________________________________
|g<C-g>| +
||g<C-g>||
________________________________________________________________________________
Print file information. Same as [c]:pa[geinfo][c].
________________________________________________________________________________
|:pa| |:pageinfo| +
||:pa[geinfo]||
________________________________________________________________________________
Show various page information. See [c]:help $$'pageinfo'$$[c] for available options.
________________________________________________________________________________
|gf| +
||gf||
________________________________________________________________________________
View source. Opens the source code of the current web site with the internal
editor in the current tab.
________________________________________________________________________________
|gF| +
||gF||
________________________________________________________________________________
View source with an external editor. Opens the source code of the current web
site with the external editor specified by the 'editor' option. For now the
external editor must be able to download and open files from a remote URL.
________________________________________________________________________________
|:vie| |:viewsource|
||:vie[wsource][!] [a][url][a]|| +
________________________________________________________________________________
View source code of current document. If [a][url][a] is specified then view the
source of that document. When [!] is given, it is opened with the external
editor.
________________________________________________________________________________
|$$|$$| +
|||||
________________________________________________________________________________
Toggle between rendered and source view. Alternates the page in the current tab
between a normally rendered view and the internal editor source view.
________________________________________________________________________________
section::Motion{nbsp}commands[motion,scrolling]
|^| |0| +
||0||
________________________________________________________________________________
Scroll to the absolute left of the document. Unlike in Vim, [m]0[m] and [m]^[m]
work exactly the same way.
________________________________________________________________________________
|$| +
||$||
________________________________________________________________________________
Scroll to the absolute right of the document
________________________________________________________________________________
|<Home>| |gg| +
||[count]gg||
________________________________________________________________________________
Go to the top of the document. When used with [count] like in [m]35gg[m], it
scrolls to 35% of the document.
________________________________________________________________________________
|<End>| |G| +
||[count]G||
________________________________________________________________________________
Go to the end of the document. When used with [count] like in [m]35G[m], it
scrolls to 35% of the document.
________________________________________________________________________________
|N%| +
||{count}%||
________________________________________________________________________________
Scroll to {count} percent of the document.
________________________________________________________________________________
|<Left>| |h| +
||[count]h||
________________________________________________________________________________
Scroll document to the left. If [count] is specified then move [count] times as
much to the left. +
If the document cannot scroll more, a beep is emitted (unless 'visualbell' is
set).
________________________________________________________________________________
|<C-e>| |<Down>| |j| +
||[count]j||
________________________________________________________________________________
Scroll document down. If [count] is specified then move [count] times as much
down. +
If the document cannot scroll more, a beep is emitted (unless 'visualbell' is
set).
________________________________________________________________________________
|<C-y>| |<Up>| |k| +
||[count]k||
________________________________________________________________________________
Scroll document up. If [count] is specified then move [count] times as much up. +
If the document cannot scroll more, a beep is emitted (unless 'visualbell' is
set).
________________________________________________________________________________
|<Right>| |l| +
||[count]l||
________________________________________________________________________________
Scroll document to the right. If [count] is specified then move [count] times
as much to the right. +
If the document cannot scroll more, a beep is emitted (unless 'visualbell' is
set).
________________________________________________________________________________
|<C-d>| +
||[count]<C-d>||
________________________________________________________________________________
Scroll window downwards in the buffer. The number of lines is set by the
'scroll' option which defaults to half a page. If [count] is given 'scroll' is
first set to this value.
________________________________________________________________________________
|<C-u>| +
||[count]<C-u>||
________________________________________________________________________________
Scroll window upwards in the buffer. The number of lines is set by the
'scroll' option which defaults to half a page. If [count] is given 'scroll' is
first set to this value.
________________________________________________________________________________
|<S-Space>| |<PageUp>| |<C-b>| +
||[count]<C-b>||
________________________________________________________________________________
Scroll up a full page. Scroll window [count] pages Backwards (upwards) in the buffer.
________________________________________________________________________________
|<Space>| |<PageDown>| |<C-f>| +
||[count]<C-f>||
________________________________________________________________________________
Scroll down a full page. Scroll window [count] pages Forwards (downwards) in the buffer.
________________________________________________________________________________
section::Jumping{nbsp}to{nbsp}elements[jumping]
|<Tab>| +
||<Tab>||
________________________________________________________________________________
Advance keyboard focus to the next element.
________________________________________________________________________________
|<S-Tab>| +
||<S-Tab>||
________________________________________________________________________________
Rewind keyboard focus to the previous element.
________________________________________________________________________________
|gi| +
||[count]gi||
________________________________________________________________________________
Focus last used input field. If there is no last input field, it focuses the
first input field. When used with [count] it directly jumps to the [count]th input
field.
________________________________________________________________________________
|]f| +
||[count]]f||
________________________________________________________________________________
Focus next frame. Transfer keyboard focus to the [count]th next frame in
order. The newly focused frame is briefly colored red. Does not wrap.
________________________________________________________________________________
|[f| +
||[count][f||
________________________________________________________________________________
Focus previous frame. Transfer keyboard focus to the [count]th previous frame
in order. The newly focused frame is briefly colored red. Does not wrap.
________________________________________________________________________________
|]]| +
||[count]]]||
________________________________________________________________________________
Follow the link labeled \'next' or \'>' if it exists. Useful when browsing
forums or documentation. Change 'nextpattern' to modify its behavior. It
follows relations between files too.
________________________________________________________________________________
|[[| +
||[count][[||
________________________________________________________________________________
Follow the link labeled \'prev', \'previous' or \'<' if it exists. Useful when
browsing forums or documentation. Change 'previouspattern' to modify its
behavior. It follows relations between files too.
________________________________________________________________________________
section::Zooming[zooming,zoom]
The zooming commands are dependent on two properties -- a zoom range and a
series of levels within that range.
The absolute value of the page zoom is limited to a value within the configured
zoom range (default: 30%--300%). The zoom levels are used by
[m]zi[m]/[m]zo[m], and similar commands, to change the zoom value in steps. The
default zoom levels are 30%, 50%, 67%, 80%, 90%, 100%, 110%, 120%, 133%, 150%,
170%, 200%, 240%, 300%.
The available zoom range can be changed by setting the
\'http://kb.mozillazine.org/Zoom.minPercent[zoom.minPercent]' and
\'http://kb.mozillazine.org/Zoom.maxPercent[zoom.maxPercent]' Songbird
preferences. The zoom levels can be changed using the
\'http://kb.mozillazine.org/Toolkit.zoomManager.zoomValues[toolkit.ZoomManager.zoomLevels]'
preference.
Note: \'toolkit.ZoomManager.zoomLevels' is specified as a list of values
between 0 and 1, not as a percentage.
|+| |zi| +
||[count]zi||
________________________________________________________________________________
Enlarge text zoom of current web page. Mnemonic: zoom in.
________________________________________________________________________________
|zm| +
||[count]zm||
________________________________________________________________________________
Enlarge text zoom of current web page by a larger amount. Mnemonic: zoom more.
________________________________________________________________________________
|-| |zo| +
||[count]zo||
________________________________________________________________________________
Reduce text zoom of current web page. Mnemonic: zoom out.
________________________________________________________________________________
|zr| +
||[count]zr||
________________________________________________________________________________
Reduce text zoom of current web page by a larger amount. Mnemonic: zoom reduce.
________________________________________________________________________________
|zz| +
||[count]zz||
________________________________________________________________________________
Set text zoom value of current web page. Zoom value can be between 30% and 300%.
If it is omitted, text zoom is reset to 100%.
________________________________________________________________________________
|zI| +
||[count]zI||
________________________________________________________________________________
Enlarge full zoom of current web page. Mnemonic: zoom in.
________________________________________________________________________________
|zM| +
||[count]zM||
________________________________________________________________________________
Enlarge full zoom of current web page by a larger amount. Mnemonic: zoom more.
________________________________________________________________________________
|zO| +
||[count]zO||
________________________________________________________________________________
Reduce full zoom of current web page. Mnemonic: zoom out.
________________________________________________________________________________
|zR| +
||[count]zR||
________________________________________________________________________________
Reduce full zoom of current web page by a larger amount. Mnemonic: zoom reduce.
________________________________________________________________________________
|zZ| +
||[count]zZ||
________________________________________________________________________________
Set full zoom value of current web page. Zoom value can be between 30 and
300%. If it is omitted, full zoom is reset to 100%.
________________________________________________________________________________
|:zo| |:zoom|
||:zo[om][!] [a][value][a]|| +
||:zo[om][!] +{value} | -{value}|| +
________________________________________________________________________________
Set zoom value of current web page. [a][value][a] can be an absolute value
between 30% and 300% or a relative value if prefixed with "-" or "+". If
[a][value][a] is omitted, zoom is reset to 100%.
Normally this command operates on the text zoom; if used with [!], it
operates on full zoom.
________________________________________________________________________________
section::Working{nbsp}with{nbsp}frames[frames]
|:frameo| |:frameonly|
||:frameo[nly]|| +
________________________________________________________________________________
Show only the current frame's page.
________________________________________________________________________________
section::Copying{nbsp}text[copying,yanking]
When running in X11, the text of the following commands is not only
copied to the clipboard but is also put into the X11 selection, which
can be pasted with the middle mouse button:
|y| +
||y||
________________________________________________________________________________
Yank current location to the clipboard. When running in X11 the location is
also put into the selection, which can be pasted with the middle mouse button.
________________________________________________________________________________
|Y| +
||Y||
________________________________________________________________________________
Copy currently selected text to the system clipboard.
________________________________________________________________________________
section::Alternate{nbsp}style{nbsp}sheets[alternate-stylesheet]
Page authors may specify alternate style sheets for an HTML document. Users can
then switch between these various style sheets, selecting their favorite.
|:pagest| |:pagestyle|
||:pagest[yle] [a][stylesheet][a]|| +
________________________________________________________________________________
Select the author style sheet to apply. If [a][stylesheet][a] is not specified
the page's default style sheet is used.
All author styling can be removed by setting the 'usermode' option.
________________________________________________________________________________
// vim: set filetype=asciidoc:

View File

@@ -1,78 +0,0 @@
heading::Command-line{nbsp}mode[Command-line-mode,Command-line,mode-cmdline]
Command-line mode is used to enter Ex commands ("[m]:[m]") and text search patterns
("[m]/[m]" and "[m]?[m]").
|:| +
||:||
________________________________________________________________________________
Start Command-line mode. In Command-line mode, you can perform extended
commands, which may require arguments.
________________________________________________________________________________
section::Command-line{nbsp}editing[cmdline-editing]
|c_<C-c>| +
||<C-c>||
________________________________________________________________________________
Quit Command-line mode without executing.
________________________________________________________________________________
|c_<C-]>| +
||<C-]>||
________________________________________________________________________________
Expand a command-line abbreviation.
________________________________________________________________________________
|c_<Up>| +
||<Up>||
________________________________________________________________________________
Recall the previous command line from the history list which matches the
current command line.
________________________________________________________________________________
|c_<Down>| +
||<Down>||
________________________________________________________________________________
Recall the next command line from the history list which matches the current
command line.
________________________________________________________________________________
|c_<S-Up>| |c_<PageUp>|
||<S-Up>|| +
||<PageUp>||
________________________________________________________________________________
Recall the previous command line from the history list.
________________________________________________________________________________
|c_<S-Down>| |c_<PageDown>|
||<S-Down>|| +
||<PageDown>||
________________________________________________________________________________
Recall the next command line from the history list.
________________________________________________________________________________
section::Command-line{nbsp}completion[cmdline-completion]
|c_<Tab>| +
||<Tab>||
________________________________________________________________________________
Complete the word in front of the cursor according to the behavior specified in
'wildmode'. If 'wildmode' contains "list" and there are multiple matches then
the completion menu window is opened.
________________________________________________________________________________
|c_<S-Tab>| +
||<S-Tab>||
________________________________________________________________________________
Complete the previous full match when 'wildmode' contains "full".
________________________________________________________________________________
// vim: set filetype=asciidoc:

View File

@@ -1,88 +0,0 @@
heading::Developer{nbsp}information[developer-information]
section::Writing{nbsp}documentation[writing-docs,documentation]
For every new feature, writing documentation is _mandatory_ for the patch to
be accepted. The docs are written in
http://www.methods.co.nz/asciidoc/index.html[asciidoc] version 8.4.x.
They are placed in the _src/locale/en-US/_ directory and compiled with
_make doc_. Please refer to the
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
interpreted correctly. The only difficult part is to write special sections
like for help::help[various.html#online-help].
----------------------------------------------------------------------------------
|<F1>| |:help| |:h| |help|
||:h[elp] {subject}|| +
||<F1>||
____________________________________________________________________________
Open help window.
The default section is shown unless {subject} is specified.
If you need help for a specific topic, try [c]:help overview[c].
____________________________________________________________________________
----------------------------------------------------------------------------------
is displayed as:
++++++++++++++++++++++++++++++++++++++++
<p><span class="hiddentag">&lt;F1&gt;</span> <span
class="hiddentag">:help</span> <span class="hiddentag">:h</span> <span
class="hiddentag">help</span>
<span class="key">:h[elp] <span class="argument">&#123;subject&#125;</span></span><br />
<span class="key">&lt;F1&gt;</span></p>
<div class="quoteblock">
<div class="quoteblock-content">
<p>Open help window.
The default section is shown unless <span class="argument">&#123;subject&#125;</span> is specified.
If you need help for a specific topic, try <span class="command">:help overview</span>.</p>
</div></div>
+++++++++++++++++++++++++++++++++++++++
Some notes about the code above:
- *$$|<F1>|$$* defines a _tag_. A tag is written at the right in magenta and let's
you jump to a topic with [c]:help <F1>[c]. Note that you must write it from
right to left, so in the above example $$|help|$$ will be the most left tag,
and $$|<F1>|$$ the most right one.
- *$$||:h[elp] {subject}|| +$$* and *$$||<F1>||$$* define command or mapping
names and are printed on the left side. Note the + at the end of one
command, that indicates a new line. There is no general rule when a new line
is needed and when not, just try it out and see what looks better.
- The actual help code for this command is embedded in at least 4 underscores
(_). This generates a quoteblock and indents the text so it is more clear
that it belongs to the command.
- Wrap things in *$$[c]$$* and they are drawn like a :command. Also *$$[o]$$*,
*$$[m]$$* and *$$[a]$$* are available to markup options, mappings, and
arguments.
- As a convenience, any string within \{...\} and $$[count]$$ and $$[!]$$ are
automatically marked up as an argument.
There are also some additional asciidoc commands specifically for writing
Xulmus documentation:
- *$$section::Writing{nbsp}documentation[writing-docs,documentation]$$* Creates
a new section like _Writing Documentation_ in this help file with 2 tags.
- *$$help:developer{nbsp}information[developer.html#documentation]$$* creates
a link with text _developer information_ to the tag _documentation_ in
the file _developer.html_.
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
in logically connected subject areas like
help:opening{nbsp}web{nbsp}pages[browsing.html#opening].
section::Generating{nbsp}documentation[generating-docs]
You can also autogenerate most of the asciidoc help after you have written a
new command, mapping or option. For this, use:
:echo util.generateHelp(commands.get("addons"), "Extra text")
Now you can copy the asciidoc text but always make sure it looks OK after
you compile the help file with "make doc", as the auto-generation might
not work correctly for all special cases.
// vim: set filetype=asciidoc:

View File

@@ -1,82 +0,0 @@
heading::Expression{nbsp}evaluation[expression,expr,eval]
//INTRO TO BE WRITTEN...
|:ec| |:echo| +
||:ec[ho] {expr}||
________________________________________________________________________________
Echo the expression. Useful for showing informational messages. Multiple lines
can be separated by \n. {expr} can either be a quoted string, or any expression
which can be fed to eval() like 4+5. You can also view the source code of
objects and functions if the return value of {expr} is an object or function.
________________________________________________________________________________
|:echoe| |:echoerr|
||:echoe[rr] {expr}|| +
________________________________________________________________________________
Echo the expression as an error message. Just like [c]:ec[ho][c] but echoes
the result highlighted as ErrorMsg and saves it to the message history.
________________________________________________________________________________
|:echom| |:echomsg|
||:echom[sg] {expr}|| +
________________________________________________________________________________
Echo the expression as an informational message. Just like [c]:ec[ho][c] but
also saves the message in the message history.
________________________________________________________________________________
|:exe| |:execute|
||:exe[cute] {expr}|| +
________________________________________________________________________________
Execute the string that results from the evaluation of {expr} as an Ex command.
Example: [c]:execute "source " + io.getRCFile().path[c] sources the appropriate
RC file.
Note: Unlike Vim this currently only supports a single argument.
________________________________________________________________________________
|:js| |:javas| |:javascript|
||:javas[cript] {cmd}|| +
||:javascript <<{endpattern}\n{empty}{script}\n{empty}{endpattern}|| +
||:javascript[!]||
________________________________________________________________________________
Run any JavaScript command through eval(). Acts as a JavaScript interpreter by
passing the argument to `eval()`.
[c]:javascript alert("Hello world")[c] shows a dialog box with the text "Hello world".
[c]:javascript <<EOF[c] reads all the lines until a line starting with "EOF"
is found, and interpret them with the JavaScript _eval()_ function.
The special version [c]:javascript![c] opens the JavaScript console of
Songbird.
[m]<Tab>[m] completion is available for [c]:javascript {cmd}<Tab>[c] (but not
yet for the [c]:js <<EOF[c] multiline widget). Be aware that Xulmus needs
to run {cmd} through eval() to get the completions, which could have unwanted
side effects.
________________________________________________________________________________
// >> To make the syntax highlighting happy
|:let|
||:let {var-name} [+-.]= {expr1}|| +
||:let {var-name}|| +
||:let||
________________________________________________________________________________
Sets or lists a variable. Sets the variable {var-name} to the value of the
expression {expr1}. If no expression is given, the value of the variable is
displayed. Without arguments, displays a list of all variables.
________________________________________________________________________________
|:unl| |:unlet|
||:unl[et][!] {name} ...|| +
________________________________________________________________________________
Deletes the variable {name}. Several variable names can be given. When used
with [!] no error message is output for non-existing variables.
________________________________________________________________________________
// vim: set filetype=asciidoc:

View File

@@ -1,160 +0,0 @@
heading::Xulmus's{nbsp}GUI[gui]
Although Xulmus offers the most frequently used Songbird functionality via
Ex and Normal mode commands there may be times when directly accessing the GUI
is required. There are commands for accessing the menu system, standard dialogs
and the sidebar.
section::Menus[menu]
|:emenu| +
||:emenu {menu}||
________________________________________________________________________________
Execute {menu} from the command line. This command provides command-line access
to all menu items available from the main Songbird menubar. {menu} is a
hierarchical path to the menu item with each submenu separated by a period.
E.g. [c]:emenu File.Open File...[c]
________________________________________________________________________________
section::Dialogs[dialogs]
|:addo| |:addons| +
||:addo[ns]||
________________________________________________________________________________
Show available Songbird Extensions and Themes.
You can add/remove/disable extensions from this dialog.
Be aware that not all Songbird extensions work, because Xulmus overrides
some key bindings and changes Songbird's GUI.
________________________________________________________________________________
|:dia| |:dialog|
||:dia[log] [a][songbird-dialog][a]|| +
________________________________________________________________________________
Open a Songbird dialog.
Available dialogs:
[frame="topbot",grid="none",cols="1,4"]
|===============================================================================
|*about* |About Songbird
|*addons* |Manage Add-ons
|*checkupdates* |Check for updates
|*cleardata* |Clear private data
|*cookies* |List your cookies
|*console* |JavaScript console
|*dominspector* |DOM Inspector
|*downloads* |Manage Downloads
|*jumpto* |Jump to a media item
|*newsmartplaylist*|Create a new smart playlist
|*openfile* |Open the file selector dialog
|*pagesource* |View page source
|*places* |Places Organizer: Manage your bookmarks and history
|*preferences* |Show Songbird preferences dialog
|*printsetup* |Setup the page size and orientation before printing
|*print* |Show print dialog
|*saveframe* |Save frame to disk
|*savepage* |Save page to disk
|*searchengines* |Manage installed search engines
|*selectionsource* |View selection source
|*subscribe* |Add a new subscription
|===============================================================================
________________________________________________________________________________
|:dl| |:downl| |:downloads| +
||:downl[oads]||
________________________________________________________________________________
Show progress of current downloads. Open the original Songbird download dialog
in a new tab. Here, downloads can be paused, canceled and resumed.
________________________________________________________________________________
section::Add-ons[extensions,add-ons]
|:exta| |:extadd| +
||:exta[dd] {file}||
________________________________________________________________________________
Install an extension. {file} is an extension XPInstall file (*.xpi).
________________________________________________________________________________
|:extde| |:extdelete| +
||:extde[lete] {extension}|| +
||:extde[lete]!||
________________________________________________________________________________
Uninstall an extension. {extension} is the extension's name. When [!] is given
all extensions are uninstalled.
________________________________________________________________________________
|:extd| |:extdisable| +
||:extd[isable] {extension}|| +
||:extd[isable]!||
________________________________________________________________________________
Disable an extension. {extension} is the extension's name. When [!] is given
all extensions are disabled.
________________________________________________________________________________
|:exte| |:extenable| +
||:exte[nable] {extension}|| +
||:exte[nable]!||
________________________________________________________________________________
Enable an extension. {extension} is the extension's name. When [!] is given all
extensions are enabled.
________________________________________________________________________________
|:extens| |:extensions| +
||:extens[ions]||
________________________________________________________________________________
List all installed extensions.
________________________________________________________________________________
|:exto| |:extoptions| +
|:extp| |:extpreferences| +
||:exto[ptions][!] {extension}|| +
||:extp[references][!] {extension}|| +
________________________________________________________________________________
Open the preferences dialog for an extension. If [!] is given, open a dialog,
otherwise open a buffer. See also 'newtab'.
________________________________________________________________________________
section::Sidebar[sidebar]
|:dpcl| |:dpclose| +
||:dpcl[ose] {pane}||
________________________________________________________________________________
Close the specified display pane.
________________________________________________________________________________
|:dpope| |:dpopen| |:dp| |:dpane| |:dislplayp| |:dislplaypane|
||:displaypane {pane}|| +
________________________________________________________________________________
Open the specified display pane. {pane} is any of "service pane left", "service
pane bottom", "content pane bottom" or "right sidebar".
________________________________________________________________________________
section::Toolbars[toolbar]
|:tbs| |:tbshow| |:toolbars| |:toolbarshow| +
||:toolbarshow {name}||
________________________________________________________________________________
Shows the named toolbar.
________________________________________________________________________________
|:tbh| |:tbhide| |:toolbarh| |:toolbarhide| +
||:toolbarhide {name}||
________________________________________________________________________________
Hides the named toolbar.
________________________________________________________________________________
|:tbt| |:tbtoggle| |:toolbart| |:toolbartoggle| +
||:toolbartoggle {name}||
________________________________________________________________________________
Toggles the named toolbar.
________________________________________________________________________________
// vim: set filetype=asciidoc:

View File

@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="chrome://liberator/content/help.xsl"?>
<!DOCTYPE overlay SYSTEM "chrome://liberator/content/liberator.dtd">
<overlay
xmlns="http://vimperator.org/namespaces/liberator"
xmlns:html="http://www.w3.org/1999/xhtml">
<dl tag="dialog-list" replace="dialog-list">
<dt>about</dt> <dd>About &liberator.hostapp;</dd>
<dt>addons</dt> <dd>Manage Add-ons</dd>
<dt>checkupdates</dt> <dd>Check for updates</dd>
<dt>cleardata</dt> <dd>Clear private data</dd>
<dt>cookies</dt> <dd>List your cookies</dd>
<dt>console</dt> <dd>JavaScript console</dd>
<dt>dominspector</dt> <dd>DOM Inspector</dd>
<dt>downloads</dt> <dd>Manage Downloads</dd>
<dt>jumpto</dt> <dd>Jump to a media item</dd>
<dt>newsmartplaylist</dt><dd>Create a new smart playlist</dd>
<dt>openfile</dt> <dd>Open the file selector dialog</dd>
<dt>pagesource</dt> <dd>View page source</dd>
<dt>places</dt> <dd>Places Organizer: Manage your bookmarks and history</dd>
<dt>preferences</dt> <dd>Show &liberator.hostapp; preferences dialog</dd>
<dt>printsetup</dt> <dd>Setup the page size and orientation before printing</dd>
<dt>print</dt> <dd>Show print dialog</dd>
<dt>saveframe</dt> <dd>Save frame to disk</dd>
<dt>savepage</dt> <dd>Save page to disk</dd>
<dt>searchengines</dt> <dd>Manage installed search engines</dd>
<dt>selectionsource</dt> <dd>View selection source</dd>
<dt>subscribe</dt> <dd>Add a new subscription</dd>
</dl>
<item replace="sbcl">
<tags>:dpcl :dpclose</tags>
<spec>:dpcl<oa>ose</oa> <a>pane</a></spec>
<description>
<p>Close the specified display pane.</p>
</description>
</item>
<item replace=":sbope">
<tags>:dpope :dpopen :dp :dpane :dislplayp :dislplaypane</tags>
<spec>:displaypane <a>pane</a></spec>
<description>
<p>
Open the specified display pane. <a>pane</a> is any of "service
pane left", "service pane bottom", "content pane bottom" or "right
sidebar".
</p>
</description>
</item>
</overlay>
<!-- vim:se sts=4 sw=4 et: -->

View File

@@ -1,28 +0,0 @@
// Copyright (c) 2009 by Doug Kearns <dougkearns@gmail.com>
//
// This work is licensed for reuse under an MIT license. Details are
// given in the LICENSE.txt file included with this file.
function checkFragment()
{
let frag = document.location.hash.substr(1);
if (!frag || document.getElementById(frag))
return;
let elem = document.evaluate('//*[@class="tag" and text()="' + frag + '"]', document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null).snapshotItem(0);
if (elem)
window.content.scrollTo(0, elem.getBoundingClientRect().top - 10); // 10px context
}
document.addEventListener("load", checkFragment, true);
window.addEventListener("message", function (event) {
if (event.data == "fragmentChange")
checkFragment();
}, true);
document.addEventListener("click", function (event) {
let evt = document.createEvent("UIEvents");
evt.initEvent("liberatorHelpLink", true, true);
event.target.dispatchEvent(evt);
}, true);
// vim: set fdm=marker sw=4 ts=4 et:

View File

@@ -1,73 +0,0 @@
heading::Hints[quick-hints,hints]
Hints are the way in which Xulmus allows you to follow links on a page. By
providing each link with a suitable hint, you can access all links with a
similar amount of minimal effort. This contrasts strongly with the traditional
approaches offered by the mouse, in which you must first find and then aim for
the link you would like, and by using repeated tabbing which quickly becomes
tedious unless you always visit the first link on a page.
|f| +
||#f#{hint}||
________________________________________________________________________________
Start QuickHint mode. In QuickHint mode, every hintable item (according to the
'hinttags' XPath query) is assigned a unique number. You can either type
this number or type part of the link text as specified by the 'hintmatching'
option, and it is followed as soon as it can be uniquely identified. Often it
can be useful to combine these techniques to narrow down results with some
letters, and then typing a single digit to make the match unique. Pressing
[m]<Leader>[m] (defaults to [c]:let mapleader = "\"[c]) toggles "escape-mode",
where numbers are treated as normal text. + [m]<Esc>[m] stops this mode at any
time.
________________________________________________________________________________
|F| +
||#F#{hint}||
________________________________________________________________________________
Start QuickHint mode, but open link in a new tab. Like normal QuickHint
mode (activated with [m]f[m]) but opens the link in a new tab. The new
tab will be loaded in background according to the
\'browser.tabs.loadInBackground' Songbird preference.
________________________________________________________________________________
|extended-hints| +
|;| +
||#;#{mode}{empty}{hint}||
________________________________________________________________________________
Start an extended hint mode. ExtendedHint mode is useful for performing
operations on hinted elements other than the default left mouse click. For
example, you can yank link locations, open them in a new window or save images.
If you want to yank the location of hint [a]24[a], press [m];y[m] to start this
hint mode. Then press [a]24[a] to copy the hint location.
{mode} can be one of: +
* |;;| [m];[m] to focus a link and hover it with the mouse
* |;?| [m]?[m] to show information about the element (incomplete)
* |;s| [m]s[m] to save its destination
* |;a| [m]a[m] to save its destination (prompting for save location)
* |;f| [m]f[m] to focus a frame
* |;o| [m]o[m] to open its location in the current tab
* |;t| [m]t[m] to open its location in a new tab
* |;b| [m]b[m] to open its location in a new background tab
* |;w| [m]w[m] to open its destination in a new window
* |;F| [m]F[m] to follow a sequence of [m]<CR>[m]-delimited hints in background tabs
* |;O| [m]O[m] to generate an [c]:open[c] with hint's URL (like [m]O[m])
* |;T| [m]T[m] to generate a [c]:tabopen[c] with hint's URL (like [m]T[m])
* |;W| [m]W[m] to generate a [c]:winopen[c] with hint's URL
* |;v| [m]v[m] to view its destination source
* |;V| [m]V[m] to view its destination source in the external editor
* |;y| [m]y[m] to yank its destination location
* |;Y| [m]Y[m] to yank its text description
* |;c| [m]c[m] to open its context menu
* |;i| [m]i[m] to open an image
* |;I| [m]I[m] to open an image in a new tab.
Hintable elements for all extended hint modes can be set in the
'extendedhinttags' XPath string.
________________________________________________________________________________
// vim: set filetype=asciidoc:

View File

@@ -1,405 +0,0 @@
heading::Index[index]
This file contains a list of all available commands, mappings and options.
HEADER
section::Player{nbsp}mode[player-index]
||[m]x[m]|| Play the current track +
||[m]z[m]|| Play the previous track +
||[m]b[m]|| Play the next track +
||[m]c[m]|| Pause/unpause the current track +
||[m]v[m]|| Stop playing the current track +
||[m]t[m]|| Toggle shuffle mode +
||[m]r[m]|| Toggle repeat mode +
||[m]i[m]|| Select the currently playing track +
||[m]f[m]|| Filter and show the tracks as a view +
||[m]Q[m]|| Queue tracks by artist/album/track +
||[m]h[m]|| Seek -10s +
||[m]<Left>[m]|| Seek -10s +
||[m]l[m]|| Seek +10s +
||[m]<Right>[m]|| Seek -10s +
||[m]H[m]|| Seek -1m +
||[m]<S-Left>[m]|| Seek -10s +
||[m]L[m]|| Seek +1m +
||[m]<S-Right>[m]|| Seek -10s +
||[m]+[m]|| Increase volume by 10% +
||[m]-[m]|| Decrease volume by 10% +
||[m]/[m]|| Search forward for a track +
||[m]n[m]|| Find the next track +
||[m]N[m]|| Find the previous track +
// TODO: better formatting
||<C-0>|| Rate the current track with 0 stars +
||<C-1>|| Rate the current track with 1 stars +
||<C-2>|| Rate the current track with 2 stars +
||<C-3>|| Rate the current track with 3 stars +
||<C-4>|| Rate the current track with 4 stars +
||<C-5>|| Rate the current track with 5 stars +
section::Insert{nbsp}mode[insert-index]
||[m]<C-i>[m]|| Launch the external editor +
||[m]<C-]>[m]|| Expand an Insert-mode abbreviation +
section::Normal{nbsp}mode[normal-index]
||[m]<C-^>[m]|| Select the alternate tab or the [count]th tab +
||[m]<C-a>[m]|| Increment last number in URL +
||[m]<C-b>[m]|| Scroll up a full page +
||[m]<C-c>[m]|| Stop loading the current web page +
||[m]<C-d>[m]|| Scroll window downwards in the buffer +
||[m]<C-f>[m]|| Scroll down a full page +
||[m]<C-g>[m]|| Print the current file name +
||[m]<C-i>[m]|| Go to a newer position in the jump list +
||[m]<C-l>[m]|| Redraw the screen +
||[m]<C-o>[m]|| Go to an older position in the jump list +
||[m]<C-u>[m]|| Scroll window upwards in the buffer +
||[m]<C-v>[m]|| Pass through next key +
||[m]<C-x>[m]|| Decrement last number in URL +
||[m]<C-z>[m]|| Temporarily ignore all Xulmus key bindings +
||[m]<Esc>[m]|| Focus content +
||[m]<F1>[m]|| Open help window +
||[m]<S-Tab>[m]|| Rewind keyboard focus +
||[m]<Tab>[m]|| Advance keyboard focus +
||[m]0[m]|| Scroll to the absolute left of the document +
||[m]$[m]|| Scroll to the absolute right of the document +
||[m]A[m]|| Toggle bookmarked state of current URL +
||[m]B[m]|| Show buffer list +
||[m]D[m]|| Delete current buffer, focus tab to the left +
||[m]F[m]|| Start QuickHint mode, but open link in a new tab +
||[m]G[m]|| Go to the end of the document +
||[m]H[m]|| Go back in the browser history +
||[m]L[m]|| Go forward in the browser history +
||[m]M[m]|| Add new QuickMark for current URL +
||[m]N[m]|| Find previous +
||[m]O[m]|| Open one or more URLs, based on current location +
||[m]P[m]|| Open (put) a URL based on the current clipboard contents in a new buffer +
||[m]R[m]|| Reload while skipping the cache +
||[m]T[m]|| Open one or more URLs in a new tab, based on current location +
||[m]Y[m]|| Copy selected text or current word +
||[m]W[m]|| Open one or more URLs in a new window, based on current location +
||[m]a[m]|| Open a prompt to bookmark the current URL +
||[m]b[m]|| Open a prompt to switch buffers +
||[m]d[m]|| Delete current buffer +
||[m]f[m]|| Start QuickHint mode +
||[m]h[m]|| Scroll document to the left +
||[m]i[m]|| Start Caret mode +
||[m]j[m]|| Scroll document down +
||[m]k[m]|| Scroll document up +
||[m]l[m]|| Scroll document to the right +
||[m]m[m]|| Set mark at the cursor position +
||[m]n[m]|| Find next +
||[m]o[m]|| Open one or more URLs +
||[m]p[m]|| Open (put) a URL based on the current clipboard contents in the current buffer +
||[m]q[m]|| Record a key sequence into a macro +
||[m]r[m]|| Reload the current web page +
||[m]t[m]|| Open one or more URLs in a new tab +
||[m]u[m]|| Undo closing of a tab +
||[m]y[m]|| Yank current location to the clipboard +
||[m]w[m]|| Open one or more URLs in a new window +
||[m];[m]|| Start an extended hint mode +
||[m]:[m]|| Enter Command-line mode +
||[m]~[m]|| Open home directory +
||[m]\[m]|| Toggle between rendered and source view +
||[m]/[m]|| Search forward for a pattern +
||[m]?[m]|| Search backwards for a pattern +
||[m]*[m]|| Find word under cursor +
||[m]#[m]|| Find word under cursor backwards +
||[m]N%[m]|| Scroll to {count} percent of the document +
||[m]'[m]|| Jump to the mark +
||[m]@[m]|| Play a macro +
||[m].[m]|| Repeat the last keyboard command +
||[m]@:[m]|| Repeat the last Ex command [count] times +
||[m]]f[m]|| Focus next frame +
||[m][f[m]|| Focus previous frame +
||[m]]] [m]|| Follow the link labeled \'next' or \'>' if it exists +
||[m][[ [m]|| Follow the link labeled \'prev', \'previous' or \'<' if it exists +
||[m]g$[m]|| Go to the last tab +
||[m]g<[m]|| Redisplay the last command output +
||[m]g0[m]|| Go to the first tab +
||[m]g<C-g>[m]|| Print file information +
||[m]gB[m]|| Repeat last [c]:buffer[!][c] command in reverse direction +
||[m]gF[m]|| View source with an external editor +
||[m]gH[m]|| Open homepage in a new tab +
||[m]gP[m]|| Open (put) a URL based on the current clipboard contents in a new buffer +
||[m]gT[m]|| Go to previous tab +
||[m]gU[m]|| Go to the root of the website +
||[m]gb[m]|| Repeat last [c]:buffer[!][c] command +
||[m]gf[m]|| View source +
||[m]gg[m]|| Go to the top of the document +
||[m]gh[m]|| Open homepage +
||[m]gi[m]|| Focus last used input field +
||[m]gn[m]|| Jump to a QuickMark in a new tab +
||[m]go[m]|| Jump to a QuickMark +
||[m]gt[m]|| Go to the next tab +
||[m]gu[m]|| Go to parent directory +
||[m]ZQ[m]|| Quit and don't save the session +
||[m]ZZ[m]|| Quit and save the session +
||[m]zI[m]|| Enlarge full zoom of current web page +
||[m]zM[m]|| Enlarge full zoom of current web page by a larger amount +
||[m]zO[m]|| Reduce full zoom of current web page +
||[m]zR[m]|| Reduce full zoom of current web page by a larger amount +
||[m]zZ[m]|| Set full zoom value of current web page +
||[m]zi[m]|| Enlarge text zoom of current web page +
||[m]zm[m]|| Enlarge text zoom of current web page by a larger amount +
||[m]zo[m]|| Reduce text zoom of current web page +
||[m]zr[m]|| Reduce text zoom of current web page by a larger amount +
||[m]zz[m]|| Set text zoom value of current web page +
section::Command-line{nbsp}editing[ex-edit-index]
||[m]<C-c>[m]|| Quit Command-line mode without executing +
||[m]<C-]>[m]|| Expand a command-line abbreviation +
||[m]<Up>[m]|| Recall the previous command line from the history list which matches the current command line +
||[m]<Down>[m]|| Recall the next command line from the history list which matches the current command line +
||[m]<Tab>[m]|| Complete the word in front of the cursor according to the behavior specified in 'wildmode' +
||[m]<S-Tab>[m]|| Complete the previous full match when 'wildmode' contains "full" +
section::Ex{nbsp}commands[ex-cmd-index,:index]
||[c]:![c]|| Run a command +
||[c]:!![c]|| Repeat last [c]:!{cmd}[c] +
||[c]:abbreviate[c]|| Abbreviate a key sequence +
||[c]:abclear[c]|| Remove all abbreviations +
||[c]:addons[c]|| Manage available Extensions and Themes +
||[c]:autocmd[c]|| Execute commands automatically on events +
||[c]:back[c]|| Go back in the browser history +
||[c]:bdelete[c]|| Delete current buffer +
||[c]:beep[c]|| Play a system beep +
||[c]:bmark[c]|| Add a bookmark +
||[c]:bmarks[c]|| List or open multiple bookmarks +
||[c]:buffer[c]|| Switch to a buffer +
||[c]:buffers[c]|| Show a list of all buffers +
||[c]:cabbrev[c]|| Abbreviate a key sequence in Command-line mode +
||[c]:cabclear[c]|| Remove all abbreviations in Command-line mode +
||[c]:cd[c]|| Change the current directory +
||[c]:cmap[c]|| Map a key sequence in Command-line mode +
||[c]:cmapclear[c]|| Remove all mappings in Command-line mode +
||[c]:cnoremap[c]|| Map a key sequence without remapping keys in Command-line mode +
||[c]:colorscheme[c]|| Load a color scheme +
||[c]:comclear[c]|| Delete all user-defined commands +
||[c]:command[c]|| List and define commands +
||[c]:cunabbrev[c]|| Remove an abbreviation in Command-line mode +
||[c]:cunmap[c]|| Remove a mapping in Command-line mode +
||[c]:delbmarks[c]|| Delete a bookmark +
||[c]:delcommand[c]|| Delete the specified user-defined command +
||[c]:delmacros[c]|| Delete macros +
||[c]:delmarks[c]|| Delete the specified marks +
||[c]:delqmarks[c]|| Delete the specified QuickMarks +
||[c]:delstyle[c]|| Delete any matching styles +
||[c]:dialog[c]|| Open a Songbird dialog +
||[c]:displaypane[c]|| Open the specified display pane +
||[c]:doautoall[c]|| Apply the autocommands matching the specified URL to all buffers +
||[c]:doautocmd[c]|| Apply the autocommands matching the specified URL to the current buffer +
||[c]:downloads[c]|| Show progress of current downloads +
||[c]:dpclose[c]|| Close the specified display pane +
||[c]:echo[c]|| Echo the expression +
||[c]:echoerr[c]|| Echo the expression as an error message +
||[c]:echomsg[c]|| Echo the expression as an informational message +
||[c]:emenu[c]|| Execute the specified menu item from the command line +
||[c]:execute[c]|| Execute the argument as an Ex command +
||[c]:extadd[c]|| Install an extension +
||[c]:extdelete[c]|| Uninstall an extension +
||[c]:extdisable[c]|| Disable an extension +
||[c]:extenable[c]|| Enable an extension +
||[c]:extensions[c]|| List all installed extensions +
||[c]:extoptions[c]|| Open an extension's preference dialog +
||[c]:exusage[c]|| List all Ex commands with a short description +
||[c]:filter[c]|| Filter and show the tracks as a view +
||[c]:finish[c]|| Stop sourcing a script file +
||[c]:forward[c]|| Go forward in the browser history +
||[c]:frameonly[c]|| Show only the current frame's page +
||[c]:hardcopy[c]|| Print current document +
||[c]:help[c]|| Open the help page +
||[c]:helpall[c]|| Open the single unchunked help page +
||[c]:highlight[c]|| Style Xulmus +
||[c]:history[c]|| Show recently visited URLs +
||[c]:iabbrev[c]|| Abbreviate a key sequence in Insert mode +
||[c]:iabclear[c]|| Remove all abbreviations in Insert mode +
||[c]:imap[c]|| Map a key sequence in Insert mode +
||[c]:imapclear[c]|| Remove all mappings in Insert mode +
||[c]:inoremap[c]|| Map a key sequence without remapping keys in Insert mode +
||[c]:iunabbrev[c]|| Remove an abbreviation in Insert mode +
||[c]:iunmap[c]|| Remove a mapping in Insert mode +
||[c]:javascript[c]|| Run a JavaScript command through eval() +
||[c]:jumps[c]|| Show jumplist +
||[c]:keepalt[c]|| Execute a command without changing the current alternate buffer +
||[c]:let[c]|| Set or list a variable +
||[c]:load[c]|| Load a playlist +
||[c]:loadplugins[c]|| Immediately load all unloaded plugins +
||[c]:macros[c]|| List all macros +
||[c]:map[c]|| Map a key sequence +
||[c]:mapclear[c]|| Remove all mappings +
||[c]:mark[c]|| Mark current location within the web page +
||[c]:marks[c]|| Show all location marks of current web page +
||[c]:mediaview[c]|| Change the media view +
||[c]:messages[c]|| Display previously given messages +
||[c]:messclear[c]|| Clear the message history +
||[c]:mkxulmusrc[c]|| Write current key mappings and changed options to the config file +
||[c]:nmap[c]|| Map a key sequence in Normal mode +
||[c]:nmapclear[c]|| Remove all mappings in Normal mode +
||[c]:nnoremap[c]|| Map a key sequence without remapping keys in Normal mode +
||[c]:nohlsearch[c]|| Remove the search highlighting +
||[c]:noremap[c]|| Map a key sequence without remapping keys +
||[c]:normal[c]|| Execute Normal mode commands +
||[c]:nunmap[c]|| Remove a mapping in Normal mode +
||[c]:open[c]|| Open one or more URLs in the current tab +
||[c]:optionusage[c]|| List all options with a short description +
||[c]:pageinfo[c]|| Show various page information +
||[c]:pagestyle[c]|| Select the author style sheet to apply +
||[c]:play[c]|| Replay a recorded macro +
||[c]:playernext[c]|| Play the next track +
||[c]:playerpause[c]|| Pause/unpause the current track +
||[c]:playerplay[c]|| Play the current track +
||[c]:playerprev[c]|| Play the previous track +
||[c]:playerstop[c]|| Stop playing the current track +
||[c]:pmap[c]|| Map a key sequence in Player mode +
||[c]:pmapclear[c]|| Remove all mappings in Player mode +
||[c]:pnoremap[c]|| Map a key sequence without remapping keys in Player mode +
||[c]:preferences[c]|| Show Songbird preferences dialog +
||[c]:punmap[c]|| Remove a mapping in Player mode +
||[c]:pwd[c]|| Print the current directory name +
||[c]:qmark[c]|| Mark a URL with a letter for quick access +
||[c]:qmarks[c]|| Show all QuickMarks +
||[c]:queue[c]|| Queue tracks by artist/album/track +
||[c]:quit[c]|| Quit current tab +
||[c]:quitall[c]|| Quit Xulmus +
||[c]:redraw[c]|| Redraw the screen +
||[c]:reload[c]|| Reload the current web page +
||[c]:reloadall[c]|| Reload all tab pages +
||[c]:restart[c]|| Force Xulmus to restart +
||[c]:runtime[c]|| Source the specified file from each directory in 'runtimepath' +
||[c]:saveas[c]|| Save current document to disk +
||[c]:scriptnames[c]|| List all sourced script names +
||[c]:seek[c]|| Seek to an absolute or relative position in a track +
||[c]:set[c]|| Set an option +
||[c]:setglobal[c]|| Set global option +
||[c]:setlocal[c]|| Set local option +
||[c]:silent[c]|| Execute a command silently +
||[c]:source[c]|| Read Ex commands from a file +
||[c]:stop[c]|| Stop loading the current web page +
||[c]:stopall[c]|| Stop loading all tab pages +
||[c]:style[c]|| Style Xulmus and web sites +
||[c]:styledisable[c]|| Disable a user style sheet +
||[c]:styleenable[c]|| Enable a user style sheet +
||[c]:styletoggle[c]|| Toggle a user style sheet +
||[c]:tab[c]|| Execute a command and tell it to output in a new tab +
||[c]:tabattach[c]|| Attach the current tab to another window +
||[c]:tabdetach[c]|| Detach current tab to its own window +
||[c]:tabdo[c]|| Execute a command in each tab +
||[c]:tabduplicate[c]|| Duplicate current tab +
||[c]:tablast[c]|| Switch to the last tab +
||[c]:tabmove[c]|| Move the current tab after tab N +
||[c]:tabnext[c]|| Switch to the next or [count]th tab +
||[c]:tabonly[c]|| Close all other tabs +
||[c]:tabopen[c]|| Open one or more URLs in a new tab +
||[c]:tabprevious[c]|| Switch to the previous tab or go [count] tabs back +
||[c]:tabrewind[c]|| Switch to the first tab +
||[c]:time[c]|| Profile a piece of code or run a command multiple times +
||[c]:toolbarhide[c]|| Hide the named toolbar +
||[c]:toolbarshow[c]|| Show the named toolbar +
||[c]:toolbartoggle[c]|| Toggle the named toolbar +
||[c]:unabbreviate[c]|| Remove an abbreviation +
||[c]:undo[c]|| Undo closing of a tab +
||[c]:undoall[c]|| Undo closing of all closed tabs +
||[c]:unlet[c]|| Delete a variable +
||[c]:unmap[c]|| Remove a mapping +
||[c]:verbose[c]|| Execute a command with 'verbose' set +
||[c]:version[c]|| Show version information +
||[c]:viewsource[c]|| View source code of current document +
||[c]:viusage[c]|| List all mappings with a short description +
||[c]:volume[c]|| Set the player volume +
||[c]:vmap[c]|| Map a key sequence in Visual mode +
||[c]:vmapclear[c]|| Remove all mappings in Visual mode +
||[c]:vnoremap[c]|| Map a key sequence without remapping keys in Visual mode +
||[c]:vunmap[c]|| Remove a mapping in Visual mode +
||[c]:winclose[c]|| Close window +
||[c]:winopen[c]|| Open one or more URLs in a new window +
||[c]:wqall[c]|| Save the session and quit +
||[c]:zoom[c]|| Set zoom value of current web page +
section::Options[option-index]
||'activate'|| Define when tabs are automatically activated +
||'cdpath'|| List of directories searched when executing [c]:cd[c] +
||'complete'|| Items which are completed at the [c]:open[c] prompts +
||'defsearch'|| Set the default search engine +
||'editor'|| Set the external text editor +
||'encoding'|| Changes the character encoding of the current buffer +
||'errorbells'|| Ring the bell when an error message is displayed +
||'eventignore'|| List of autocommand event names which should be ignored +
||'exrc'|| Allow reading of an RC file in the current directory +
||'extendedhinttags'|| XPath string of hintable elements activated by [m];[m] +
||'fileencoding'|| Changes the character encoding that Xulmus uses to read and write files +
||'focuscontent'|| Try to stay in Normal mode after loading a web page +
||'followhints'|| Change the behaviour of [m]<Return>[m] in Hints mode +
||'fullscreen'|| Show the current window fullscreen +
||'guioptions'|| Show or hide certain GUI elements like the menu or toolbar +
||'helpfile'|| Name of the main help file +
||'hintinputs'|| How text input fields are hinted +
||'hintmatching'|| How links are matched +
||'hinttags'|| XPath string of hintable elements activated by [m]f[m] and [m]F[m] +
||'hinttimeout'|| Timeout before automatically following a non-unique numerical hint +
||'history'|| Number of Ex commands and search patterns to store in the command-line history +
||'hlsearch'|| Highlight previous search pattern matches +
||'ignorecase'|| Ignore case in search patterns +
||'incsearch'|| Show where the search pattern matches as it is typed +
||'insertmode'|| Use Insert mode as the default for text areas +
||'laststatus'|| Show the status line +
||'linksearch'|| Limit the search to hyperlink text +
||'loadplugins'|| Load plugin scripts when starting up +
||'maxitems'|| Maximum number of items to display at once in a listing +
||'messages'|| Number of messages to store in the message history +
||'more'|| Pause the message list window when more than one screen of listings is displayed +
||'newtab'|| Define which commands should output in a new tab by default +
||'nextpattern'|| Patterns to use when guessing the \'next' page in a document sequence +
||'online'|| Set the \'work offline' option +
||'pageinfo'|| Desired info in the [c]:pageinfo[c] output +
||'popups'|| Where to show requested popup windows +
||'previouspattern'|| Patterns to use when guessing the \'previous' page in a document sequence +
||'repeat'|| Set the playback repeat mode +
||'runtimepath'|| List of directories searched for runtime files +
||'scroll'|| Number of lines to scroll with [m]<C-u>[m] and [m]<C-d>[m] commands +
||'shell'|| Shell to use for executing [c]:![c] and [c]:run[c] commands +
||'shellcmdflag'|| Flag passed to shell when executing [c]:![c] and [c]:run[c] commands +
||'showmode'|| Show the current mode in the command line +
||'showstatuslinks'|| Show the destination of the link under the cursor in the status bar +
||'showtabline'|| Control when to show the tab bar of opened web pages +
||'shuffle'|| Play tracks in shuffled order +
||'smartcase'|| Override the 'ignorecase' option if the pattern contains uppercase characters +
||'suggestengines'|| Engine Alias which has a feature of suggest +
||'titlestring'|| Change the title of the window +
||'urlseparator'|| Set the separator regex used to separate multiple URL args +
||'usermode'|| Show current website with a minimal style sheet to make it easily accessible +
||'verbose'|| Define which info messages are displayed +
||'visualbell'|| Use visual bell instead of beeping on errors +
||'wildcase'|| Completion case matching mode +
||'wildignore'|| List of file patterns to ignore when completing files +
||'wildmode'|| Define how command-line completion works +
||'wildoptions'|| Change how command-line completion is done +
||'wordseparators'|| How words are split for hintmatching +
// vim: set filetype=asciidoc:

View File

@@ -1,28 +0,0 @@
heading::Insert{nbsp}mode[Insert-mode,Insert,mode-insert]
Insert mode is used to enter text in text boxes and text areas. When
'insertmode' is set, focusing on a text area immediately switches to
Insert mode.
|i_i| +
||i_i||
________________________________________________________________________________
Starts Insert mode in text areas when 'insertmode' is not set.
________________________________________________________________________________
section::Insert-mode{nbsp}special{nbsp}keys[ins-special-keys]
|i_<C-i>| +
||<C-i>||
________________________________________________________________________________
Launch the external editor. See the 'editor' option.
________________________________________________________________________________
|i_<C-]>| +
||<C-]>||
________________________________________________________________________________
Expand an Insert-mode abbreviation.
________________________________________________________________________________
// vim: set filetype=asciidoc:

View File

@@ -1,127 +0,0 @@
logo:[]
section::Introduction[intro]
http://vimperator.org/xulmus[Xulmus] is a free media player add-on for
Songbird, which combines the best features of the
http://cmus.sourceforge.net[CMus] music player and the http://www.vim.org[Vim]
text editor.
|warning| +
Warning:
To provide the most authentic CMus/Vim experience, the Songbird toolbar
is hidden. +
If you really need it, type: [c]:set guioptions+=T[c] to get it back. +
If you don't like Xulmus at all, you can uninstall it by typing
[c]:extdelete Xulmus[c] or [c]:extdisable Xulmus[c] to disable it. +
If you like it but can't remember the shortcuts, then press [m]F1[m] or
[c]:help[c] to get this help window back.
|author| |donation| +
Xulmus was written by mailto:prathyushthota@gmail.com[Prathyush Thota].
If you appreciate my work on Xulmus and want to encourage me working on it
more, you can either send me greetings, patches or make a donation:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
<!-- the PAYPAL code -->
<form style="text-align: center;" action="https://www.paypal.com/cgi-bin/webscr" method="post"><fieldset class="paypal">
<input type="hidden" name="cmd" value="_s-xclick"/>
<input type="image" src="chrome://liberator/content/x-click-but21.gif" name="submit" alt="Make payments with PayPal - it\'s fast, free and secure!"/>
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----MIIHPwYJKoZIhvcNAQcEoIIHMDCCBywCAQExggEwMIIBLAIBADCBlDCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20CAQAwDQYJKoZIhvcNAQEBBQAEgYBDDJfc+lXLBSAM9XSWv/ebzG/L7PTqYiIXaWVg8pfinDsfYaAcifcgCTuApg4v/VaZIQ/hLODzQu2EvmjGXP0twErA/Q8G5gx0l197PJSyVXb1sLwd1mgOdLF4t0HmDCdEI9z3H6CMhsb3xVwlfpzllSfCIqzlSpx4QtdzEZGzLDELMAkGBSsOAwIaBQAwgbwGCSqGSIb3DQEHATAUBggqhkiG9w0DBwQI8ZOwn5QkHgaAgZjjtPQxB7Vw2rS7Voap9y+xdVLoczUQ97hw+bOdZLcGykBtfoVjdn76MS51QKjGp1fEmxkqTuQ+Fxv8+OVtHu0QF/qlrhmC3fJBRJ0IFWxKdXS+Wod4615BDaG2X1hzvCL443ffka8XlLSiFTuW43BumQs/O+6Jqsk2hcReP3FIQOvtWMSgGTALnZx7x5c60u/3NSKW5qvyWKCCA4cwggODMIIC7KADAgECAgEAMA0GCSqGSIb3DQEBBQUAMIGOMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExFjAUBgNVBAcTDU1vdW50YWluIFZpZXcxFDASBgNVBAoTC1BheVBhbCBJbmMuMRMwEQYDVQQLFApsaXZlX2NlcnRzMREwDwYDVQQDFAhsaXZlX2FwaTEcMBoGCSqGSIb3DQEJARYNcmVAcGF5cGFsLmNvbTAeFw0wNDAyMTMxMDEzMTVaFw0zNTAyMTMxMDEzMTVaMIGOMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExFjAUBgNVBAcTDU1vdW50YWluIFZpZXcxFDASBgNVBAoTC1BheVBhbCBJbmMuMRMwEQYDVQQLFApsaXZlX2NlcnRzMREwDwYDVQQDFAhsaXZlX2FwaTEcMBoGCSqGSIb3DQEJARYNcmVAcGF5cGFsLmNvbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAwUdO3fxEzEtcnI7ZKZL412XvZPugoni7i7D7prCe0AtaHTc97CYgm7NsAtJyxNLixmhLV8pyIEaiHXWAh8fPKW+R017+EmXrr9EaquPmsVvTywAAE1PMNOKqo2kl4Gxiz9zZqIajOm1fZGWcGS0f5JQ2kBqNbvbg2/Za+GJ/qwUCAwEAAaOB7jCB6zAdBgNVHQ4EFgQUlp98u8ZvF71ZP1LXChvsENZklGswgbsGA1UdIwSBszCBsIAUlp98u8ZvF71ZP1LXChvsENZklGuhgZSkgZEwgY4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEUMBIGA1UEChMLUGF5UGFsIEluYy4xEzARBgNVBAsUCmxpdmVfY2VydHMxETAPBgNVBAMUCGxpdmVfYXBpMRwwGgYJKoZIhvcNAQkBFg1yZUBwYXlwYWwuY29tggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADgYEAgV86VpqAWuXvX6Oro4qJ1tYVIT5DgWpE692Ag422H7yRIr/9j/iKG4Thia/Oflx4TdL+IFJBAyPK9v6zZNZtBgPBynXb048hsP16l2vi0k5Q2JKiPDsEfBhGI+HnxLXEaUWAcVfCsQFvd2A1sxRr67ip5y2wwBelUecP3AjJ+YcxggGaMIIBlgIBATCBlDCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20CAQAwCQYFKw4DAhoFAKBdMBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEwHAYJKoZIhvcNAQkFMQ8XDTA3MDMyMTIyMzI1OFowIwYJKoZIhvcNAQkEMRYEFCirrvlwYVHQiNEEbM6ikfx9+Dm5MA0GCSqGSIb3DQEBAQUABIGAtbsR8GdCdURLziozXLSdtY+zJZUPPeQFXXy2V1S/3ldiN+pRvd4HI7xz8mOY1UaKJZpwZnOosy9MflL1/hbiEtEyQ2Dm/s4jnTcJng/NjLIZu+0NYxXRJhB+zMJubnMMMjzNrGlqI4F2HAB/bCA1eOJ5B83Of3dA4rk/T/8GoSQ=-----END PKCS7-----"/>
</fieldset></form>
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Of course as a believer in free open source software, only make a donation
if you really like Xulmus and the money doesn't hurt -- otherwise just use
it, recommend it and like it :)
section::Help{nbsp}topics[overview]
//- help:Tutorial[tutorial.html]: A quick-start tutorial for new users.
- help:Starting{nbsp}Xulmus[starting.html]: How Xulmus starts up, where it
reads the config file...
- help:Player{nbsp}mode[player.html]: Interacting with the media player.
- help:Browsing[browsing.html]: Basic mappings and commands needed for a
browsing session (how to open a web page or go back in history).
- help:Buffer[buffer.html]: Operations on the current document like scrolling
or copying text.
- help:Command-line{nbsp}mode[cmdline.html]: Command-line editing.
- help:Insert{nbsp}mode[insert.html]: Insert-mode editing.
- help:Options[options.html]: A description of all options.
- help:Text{nbsp}search{nbsp}commands[pattern.html]: Searching for text in the
current buffer.
- help:Tabs[tabs.html]: Managing your tabbed browsing session.
- help:Hints[hints.html]: Selecting hyperlinks and other page elements.
- help:Key{nbsp}mappings,{nbsp}abbreviations,{nbsp}and{nbsp}user-defined{nbsp}commands[map.html]:
Defining new key mappings, abbreviations and user commands.
- help:Expression{nbsp}evaluation[eval.html]: Executing JavaScript.
- help:Marks[marks.html]: Using bookmarks, QuickMarks, history and local marks.
- help:Repeating{nbsp}commands[repeat.html]: Using macros to repeat recurring
workflows.
- help:Automatic{nbsp}commands[autocommands.html]: Automatically executing code
on certain events.
- help:Printing[print.html]: Printing pages.
- help:Xulmus's{nbsp}GUI[gui.html]: Accessing Songbird menus, dialogs and the
display panels.
- help:Styling{nbsp}the{nbsp}GUI{nbsp}and{nbsp}web{nbsp}pages[styling.html]:
Changing the styling of content pages and Xulmus itself.
- help:Error{nbsp}and{nbsp}informational{nbsp}messages[message.html]: A
description of messages and error messages.
- help:Developer{nbsp}information[developer.html]: How to write docs or
plugins.
- help:Various{nbsp}commands[various.html]: Other help which didn't fit into
any other category.
- help:Index[index.html]: An index of all commands and options.
You can also jump directly to the help of a specific command with [c]:help o[c]
or [c]:help :set[c].
section::Features[features]
// TODO: make Xulmus specific
* Vim-like keybindings ([m]h[m], [m]j[m], [m]k[m], [m]l[m], [m]gg[m], [m]G[m],
[m]0[m], [m]$[m], [m]ZZ[m], [m]<C-f>[m], etc.)
* Ex commands ([c]:quit[c], [c]:open www.foo.com[c], ...)
* Tab completion available for all commands with support for "longest" matching
when set in 'wildmode'
* Hit-a-hint like navigation of links (start with [m]f[m] to follow a link)
* Advanced completion of bookmark and history URLs (searching also in title,
not only URL)
* Vim-like statusline with a Wget-like progress bar
* Minimal GUI (easily hide useless menubar and toolbar with
[c]:set guioptions=[c])
* Ability to [c]:source[c] JavaScript files, and to use a [a]~/.xulmusrc[a]
file with syntax highlighting if you install
http://code.google.com/p/vimperator-labs/issues/detail?id=50[xulmus.vim]
* Easy quick searches ([c]:open foo[c] will search for "foo" in google,
[c]:open ebay terminator[c] will search for "terminator" on ebay)
with support for Songbird keyword bookmarks and search engines
* Count supported for many commands ([m]3<C-o>[m] will go back 3 pages)
* Beep on errors
* Marks support ([m]m[m][a]a[a] to set mark a on a web page, [m]'[m][a]a[a] to
go there)
* QuickMarks support (quickly go to previously marked web pages with
[m]go[m][a]{a-zA-Z0-9}[a])
* [c]:map[c] and [c]:command[c] support (and feedkeys() for script writers)
* [c]:time[c] support for profiling
* Move the text cursor and select text with Vim keys and a Visual mode
* External editor support
* Macros to replay key strokes
* AutoCommands to execute actions on certain events
* A comprehensive help system, explaining all commands, mappings and options
section::Contact[contact]
Please send comments/bug reports/patches to the mailing list, where we will
properly answer any questions. You can also join the
+++<a href="irc://irc.freenode.net/vimperator">#vimperator</a>+++ IRC channel
on http://www.freenode.net/[Freenode] or check the
http://code.google.com/p/vimperator-labs/w/list?q=label%3Aproject-xulmus[Wiki]
for
http://code.google.com/p/vimperator-labs/wiki/XulmusFAQ[frequently asked
questions (FAQ)]. Make sure, you have read the
http://vimperator-labs.googlecode.com/hg/xulmus/TODO[TODO] file first, as we
are aware of many things which can be improved when we find time for it or
receive patches.
// vim: set filetype=asciidoc:

View File

@@ -0,0 +1,134 @@
<?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="gui"
title="&liberator.appname; GUI"
xmlns="http://vimperator.org/namespaces/liberator"
xmlns:html="http://www.w3.org/1999/xhtml">
<logo/>
<h2 tag="intro">Introduction</h2>
<link topic="http://vimperator.org/%liberator.name;">&liberator.appname;</link>
is a free media player add-on for &liberator.hostapp;, which
combines the best features of the
<link topic="http://cmus.sourceforge.net">CMus</link>
music player and the http://www.vim.org[Vim] text editor.
|warning| +
<warning tag="warning">
To provide the most authentic CMus/Vim experience, the &liberator.hostapp; toolbar
is hidden.
If you really need it, type: <ex>:set guioptions+=T</ex> to get it back.
If you don't like &liberator.appname; at all, you can uninstall it by typing
<ex>:extdelete &liberator.appname;</ex> or <ex>:extdisable &liberator.appname;</ex> to disable it.
If you like it but can't remember the shortcuts, then press <k>F1</k> or
<ex>:help</ex> to get this help window back.
</warning>
<tags>author donation</tags>
<p>
&liberator.appname; was written by
mailto:prathyushthota@gmail.com[Prathyush Thota]. If you
appreciate my work on &liberator.appname; and want to encourage
me working on it more, you can either send me greetings, patches
or make a donation:
</p>
<!-- the PAYPAL code -->
<div xmlns="http://www.w3.org/1999/xhtml">
<form style="text-align: center;" action="https://www.paypal.com/cgi-bin/webscr" method="post"><fieldset class="paypal">
<input type="hidden" name="cmd" value="_s-xclick"/>
<input type="image" src="chrome://liberator/content/x-click-but21.gif" name="submit" alt="Make payments with PayPal - it\'s fast, free and secure!"/>
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----MIIHPwYJKoZIhvcNAQcEoIIHMDCCBywCAQExggEwMIIBLAIBADCBlDCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20CAQAwDQYJKoZIhvcNAQEBBQAEgYBDDJfc+lXLBSAM9XSWv/ebzG/L7PTqYiIXaWVg8pfinDsfYaAcifcgCTuApg4v/VaZIQ/hLODzQu2EvmjGXP0twErA/Q8G5gx0l197PJSyVXb1sLwd1mgOdLF4t0HmDCdEI9z3H6CMhsb3xVwlfpzllSfCIqzlSpx4QtdzEZGzLDELMAkGBSsOAwIaBQAwgbwGCSqGSIb3DQEHATAUBggqhkiG9w0DBwQI8ZOwn5QkHgaAgZjjtPQxB7Vw2rS7Voap9y+xdVLoczUQ97hw+bOdZLcGykBtfoVjdn76MS51QKjGp1fEmxkqTuQ+Fxv8+OVtHu0QF/qlrhmC3fJBRJ0IFWxKdXS+Wod4615BDaG2X1hzvCL443ffka8XlLSiFTuW43BumQs/O+6Jqsk2hcReP3FIQOvtWMSgGTALnZx7x5c60u/3NSKW5qvyWKCCA4cwggODMIIC7KADAgECAgEAMA0GCSqGSIb3DQEBBQUAMIGOMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExFjAUBgNVBAcTDU1vdW50YWluIFZpZXcxFDASBgNVBAoTC1BheVBhbCBJbmMuMRMwEQYDVQQLFApsaXZlX2NlcnRzMREwDwYDVQQDFAhsaXZlX2FwaTEcMBoGCSqGSIb3DQEJARYNcmVAcGF5cGFsLmNvbTAeFw0wNDAyMTMxMDEzMTVaFw0zNTAyMTMxMDEzMTVaMIGOMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExFjAUBgNVBAcTDU1vdW50YWluIFZpZXcxFDASBgNVBAoTC1BheVBhbCBJbmMuMRMwEQYDVQQLFApsaXZlX2NlcnRzMREwDwYDVQQDFAhsaXZlX2FwaTEcMBoGCSqGSIb3DQEJARYNcmVAcGF5cGFsLmNvbTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAwUdO3fxEzEtcnI7ZKZL412XvZPugoni7i7D7prCe0AtaHTc97CYgm7NsAtJyxNLixmhLV8pyIEaiHXWAh8fPKW+R017+EmXrr9EaquPmsVvTywAAE1PMNOKqo2kl4Gxiz9zZqIajOm1fZGWcGS0f5JQ2kBqNbvbg2/Za+GJ/qwUCAwEAAaOB7jCB6zAdBgNVHQ4EFgQUlp98u8ZvF71ZP1LXChvsENZklGswgbsGA1UdIwSBszCBsIAUlp98u8ZvF71ZP1LXChvsENZklGuhgZSkgZEwgY4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEUMBIGA1UEChMLUGF5UGFsIEluYy4xEzARBgNVBAsUCmxpdmVfY2VydHMxETAPBgNVBAMUCGxpdmVfYXBpMRwwGgYJKoZIhvcNAQkBFg1yZUBwYXlwYWwuY29tggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADgYEAgV86VpqAWuXvX6Oro4qJ1tYVIT5DgWpE692Ag422H7yRIr/9j/iKG4Thia/Oflx4TdL+IFJBAyPK9v6zZNZtBgPBynXb048hsP16l2vi0k5Q2JKiPDsEfBhGI+HnxLXEaUWAcVfCsQFvd2A1sxRr67ip5y2wwBelUecP3AjJ+YcxggGaMIIBlgIBATCBlDCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20CAQAwCQYFKw4DAhoFAKBdMBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEwHAYJKoZIhvcNAQkFMQ8XDTA3MDMyMTIyMzI1OFowIwYJKoZIhvcNAQkEMRYEFCirrvlwYVHQiNEEbM6ikfx9+Dm5MA0GCSqGSIb3DQEBAQUABIGAtbsR8GdCdURLziozXLSdtY+zJZUPPeQFXXy2V1S/3ldiN+pRvd4HI7xz8mOY1UaKJZpwZnOosy9MflL1/hbiEtEyQ2Dm/s4jnTcJng/NjLIZu+0NYxXRJhB+zMJubnMMMjzNrGlqI4F2HAB/bCA1eOJ5B83Of3dA4rk/T/8GoSQ=-----END PKCS7-----"/>
</fieldset></form>
</div>
<p>
Of course as a believer in free open source software, only make
a donation if you really like &liberator.appname; and the money
doesn't hurt -- otherwise just use it, recommend it and like it
:)
</p>
<h2 tag="overview">Help topics</h2>
<ul>
<li><link topic="starting">Starting &liberator.appname;</link>: How &liberator.appname; starts up, where it reads the config file... </li>
<li><link topic="player">Player mode</link>: Interacting with the media player.</li>
<li><link topic="browsing">Browsing</link>: Basic mappings and commands needed for a browsing session (how to open a web page or go back in history).</li>
<li><link topic="buffer">Buffer</link>: Operations on the current document like scrolling or copying text.</li>
<li><link topic="cmdline">Command-line mode</link>: Command-line editing.</li>
<li><link topic="insert">Insert mode</link>: Insert-mode editing.</li>
<li><link topic="options">Options</link>: A description of all options.</li>
<li><link topic="pattern">Text search commands</link>: Searching for text in the current buffer.</li>
<li><link topic="tabs">Tabs</link>: Managing your tabbed browsing session.</li>
<li><link topic="hints">Hints</link>: Selecting hyperlinks and other page elements.</li>
<li><link topic="map">Key mappings, abbreviations, and user-defined commands</link>: Defining new key mappings, abbreviations and user commands.</li>
<li><link topic="eval">Expression evaluation</link>: Executing JavaScript.</li>
<li><link topic="marks">Marks</link>: Using bookmarks, QuickMarks, history and local marks.</li>
<li><link topic="repeat">Repeating commands</link>: Using macros to repeat recurring workflows.</li>
<li><link topic="autocommands">Automatic commands</link>: Automatically executing code on certain events.</li>
<li><link topic="print">Printing</link>: Printing pages.</li>
<li><link topic="gui">&liberator.appname;'s GUI</link>: Accessing &liberator.hostapp; menus, dialogs and the display panels.</li>
<li><link topic="styling">Styling the GUI and web pages</link>: Changing the styling of content pages and &liberator.appname; itself.</li>
<li><link topic="message">Error and informational messages</link>: A description of messages and error messages.</li>
<li><link topic="developer">Developer information</link>: How to write docs or plugins.</li>
<li><link topic="various">Various commands</link>: Other help which didn't fit into any other category.</li>
<li><link topic="index">Index</link>: An index of all commands and options.</li>
</ul>
<p>
You can also jump directly to the help of a specific command
with <ex>:help o</ex> or <ex>:help :set</ex>.
</p>
<h2 tag="features">Features</h2>
<!-- TODO: make Xulmus specific -->
<ul>
<li>Vim-like keybindings (<k>h</k>, <k>j</k>, <k>k</k>, <k>l</k>, <k>gg</k>, <k>G</k>, <k>0</k>, <k>$</k>, <k>ZZ</k>, <k name="C-f"/>, etc.)</li>
<li>Ex commands (<ex>:quit</ex>, <ex>:open www.foo.com</ex>, ...)</li>
<li>Tab completion available for all commands with support for "longest" matching when set in 'wildmode'</li>
<li>Hit-a-hint like navigation of links (start with <k>f</k> to follow a link)</li>
<li>Advanced completion of bookmark and history URLs (searching also in title, not only URL)</li>
<li>Vim-like statusline with a Wget-like progress bar</li>
<li>Minimal GUI (easily hide useless menubar and toolbar with <ex>:set guioptions=</ex>)</li>
<li>Ability to <ex>:source</ex> JavaScript files, and to use a [a]~/.xulmusrc[a] file with syntax highlighting if you install http://code.google.com/p/vimperator-labs/issues/detail?id=50[xulmus.vim]</li>
<li>Easy quick searches (<ex>:open foo</ex> will search for "foo" in google, <ex>:open ebay terminator</ex> will search for "terminator" on ebay) with support for &liberator.hostapp; keyword bookmarks and search engines</li>
<li>Count supported for many commands (<em>3</em><k name="C-o"/> will go back 3 pages)</li>
<li>Beep on errors</li>
<li>Marks support (<k>m</k><em>a</em> to set mark a on a web page, <k>'</k><em>a</em> to go there)</li>
<li>QuickMarks support (quickly go to previously marked web pages with <k>go</k><a>a-zA-Z0-9</a>)</li>
<li><ex>:map</ex> and <ex>:command</ex> support (and feedkeys() for script writers)</li>
<li><ex>:time</ex> support for profiling</li>
<li>Move the text cursor and select text with Vim keys and a Visual mode</li>
<li>External editor support</li>
<li>Macros to replay key strokes</li>
<li>AutoCommands to execute actions on certain events</li>
<li>A comprehensive help system, explaining all commands, mappings and options</li>
</ul>
<h2 tag="contact">Contact</h2>
<p>
Please send comments/bug reports/patches to the mailing list,
where we will properly answer any questions. You can also join
the
<link topic="irc://irc.freenode.net/vimperator">#vimperator</link>
IRC channel on
<link topic="http://www.freenode.net/">Freenode</link> or check the
<link topic="http://code.google.com/p/vimperator-labs/w/list?q=label%3Aproject-xulmus">Wiki</link>
for
<link topic="http://code.google.com/p/vimperator-labs/wiki/&liberator.appname;FAQ">
frequently asked questions (FAQ)</link>.
Make sure, you have read the
<link topic="http://vimperator-labs.googlecode.com/hg/xulmus/TODO">TODO</link>
file first, as we are aware of many things which can be improved
when we find time for it or receive patches.
</p>
</document>
<!-- vim:se sts=4 sw=4 et: -->

View File

@@ -1,469 +0,0 @@
heading::Key{nbsp}mappings,{nbsp}abbreviations,{nbsp}and{nbsp}user-defined{nbsp}commands[]
section::Key{nbsp}mapping[key-mapping,mapping,map,macro]
The key mapping commands can be used to either redefine the standard key
bindings or define new ones. A mapping consists of a key, or [j]key-sequence[j],
which is translated to a string of characters. Example:
\{nbsp}[c]:map <F2> :echo new Date().toDateString()<CR>[c]
will echo the current date to the command line when [m]<F2>[m] is pressed.
|:map-modes| +
Keys can be mapped in four distinct modes:
* Normal mode: When browsing normally --
* Visual mode: When selecting text with the cursor keys --
* Insert mode: When interacting with text fields on a website --
* Command-line mode: When typing into the Xulmus command line --
* Player mode: When the main player tab is active --
Warning: Mappings are NOT saved between sessions, make sure you put them in your
xulmusrc file!
subsection::Map{nbsp}commands[:map-commands]
|:map|
||:map {lhs} {rhs}|| +
|:nm| |:nmap|
||:nm[ap] {lhs} {rhs}|| +
|:vm| |:vmap|
||:vm[ap] {lhs} {rhs}|| +
|:im| |:imap|
||:im[ap] {lhs} {rhs}|| +
|:cm| |:cmap|
||:cm[ap] {lhs} {rhs}|| +
|:pm| |:pmap|
||:pm[ap] {lhs} {rhs}|| +
________________________________________________________________________________
Map the [j]key-sequence[j] {lhs} to {rhs} for the applicable mode(s). The {rhs} is
remapped, allowing for nested and recursive mappings.
________________________________________________________________________________
|:no| |:noremap|
||:no[remap] {lhs} {rhs}|| +
|:nn| |:nnoremap|
||:nn[oremap] {lhs} {rhs}|| +
|:vn| |:vnoremap|
||:vn[oremap] {lhs} {rhs}|| +
|:ino| |:inoremap|
||:ino[remap] {lhs} {rhs}|| +
|:cno| |:cnoremap|
||:cno[remap] {lhs} {rhs}|| +
|:pno| |:pnoremap|
||:pno[remap] {lhs} {rhs}|| +
________________________________________________________________________________
Map the [j]key-sequence[j] {lhs} to {rhs} for the applicable mode(s). No remapping of
the {rhs} is performed.
________________________________________________________________________________
|:unm| |:unmap|
||:map {lhs} {rhs}|| +
|:nun| |:nunmap|
||:nun[map] {lhs} {rhs}|| +
|:vun| |:vunmap|
||:vun[map] {lhs} {rhs}|| +
|:iu| |:iunmap|
||:iu[nmap] {lhs} {rhs}|| +
|:cu| |:cunmap|
||:cu[nmap] {lhs} {rhs}|| +
|:pu| |:cunmap|
||:pu[nmap] {lhs} {rhs}|| +
________________________________________________________________________________
Remove the mapping of {lhs} for the applicable mode(s).
________________________________________________________________________________
|:mapc| |:mapclear|
||:mapc[lear]|| +
|:nmapc| |:nmapclear|
||:nmapc[lear]|| +
|:vmapc| |:vmapclear|
||:vmapc[lear]|| +
|:imapc| |:imapclear|
||:imapc[lear]|| +
|:cmapc| |:cmapclear|
||:cmapc[lear]|| +
|:pmapc| |:pmapclear|
||:pmapc[lear]|| +
________________________________________________________________________________
Remove all mappings for the applicable mode(s). All user-defined mappings are
cleared.
________________________________________________________________________________
||:map|| +
||:nm[ap]|| +
||:vm[ap]|| +
||:im[ap]|| +
||:cm[ap]|| +
||:pm[ap]|| +
________________________________________________________________________________
List all mappings for the applicable mode(s).
________________________________________________________________________________
|:map_l|
||:map {lhs}|| +
|:nmap_l|
||:nm[ap] {lhs}|| +
|:vmap_l|
||:vm[ap] {lhs}|| +
|:imap_l|
||:im[ap] {lhs}|| +
|:cmap_l|
||:cm[ap] {lhs}|| +
|:pmap_l|
||:pm[ap] {lhs}|| +
________________________________________________________________________________
List all mappings starting with {lhs} for the applicable mode(s).
________________________________________________________________________________
subsection::Special{nbsp}arguments{nbsp}[:map-arguments]
|:map-<silent>| +
When the first argument to one of the mapping commands is [c]<silent>[c], {rhs}
is not echoed to the command line, nor, for that matter, anything else until
the command has completed.
Below is an overview of which modes each map command applies to:
// TODO: table format
:map :noremap :unmap :mapclear - both Normal and Visual modes
:nmap :nnoremap :nunmap :nmapclear - Normal mode
:vmap :vnoremap :vunmap :vmapclear - Visual mode
:imap :inoremap :iunmap :imapclear - Insert mode
:cmap :cnoremap :cunmap :cmapclear - Command-line mode
// |<>| breaks doc validation
subsection::Key{nbsp}sequences[key-notation,key-sequence]
For most keys, the key-sequence is the same as the character you see when you
type that key, however there are some exceptions which allow for a much larger
number of keys to be used in mappings.
* *<lt>*, *\<*, *<Space>*, *$$\ $$* allow a literal *<* or space character.
* *\'*, *\"* and *\\* must be used to avoid escaping issues when mapping a quote or backslash.
* *<Left>* *<Right>* *<Up>* *<Down>* *<PageUp>* *<PageDown>* *<Esc>* *<CR>* (for carriage return/enter)
* *<CapsLock>* *<NumLock>* *<Ins>* *<Del>* *<Tab>* *<BS>* (for a backspace)
* *<F1>* through *<F12>* work as expected
Most keyboards have some modifiers such as the control, alt or meta keys. In
order to create a mapping that uses these keys the correct prefix must be used
within the angle brackets.
* *<C-x>*: The control or ctrl key.
* *<A-x>*: The alt key.
* *<M-x>*: The meta key, windows key, or command key
* *<S-x>*: The shift key.
These prefixes can be combined however you see fit, though you should note that
within angle brackets all alphabetic characters are read as lowercase. In order
to force them to be uppercase, you must specify the S- prefix as well.
Additionally, you should never use the S- prefix with a number or piece of
punctuation, even if you require a shift to type that character; doing so will
give you a mapping that cannot be typed. With non-character keys, tab and
space, the S- modifier works just like C- A- and M-. Some examples may clarify
the situation:
* *xc*: type x, and then type c
* *<C-x>c*: hold control and type x, then type c without control
* *<C-2>*: type 2 while holding control
* *<C-@>*: type @ while holding control
* *<S-Space>*: press space while holding shift
* *<C-A-j>*: press j while holding control and alt
* *<C-A-J>*: exactly the same as above
* *<C-A-S-j>*: press J while holding control and alt
subsection::Special{nbsp}characters[:map-special-chars]
|<Nop>| +
||<Nop>||
________________________________________________________________________________
Do nothing. This command is useful for disabling a specific mapping. [c]:map
<C-n> <Nop>[c] will prevent [m]<C-n>[m] from doing anything.
________________________________________________________________________________
|<CR>| |map_return| +
||<CR>||
________________________________________________________________________________
Expand to a line terminator in a key mapping. An Ex command in the {rhs} of a
mapping requires a line terminator after it so that it is executed when the
mapping is expanded. [m]<CR>[m] should be used for this purpose.
________________________________________________________________________________
|<Leader>| |mapleader| +
||<Leader>||
________________________________________________________________________________
Expands to the value of the "mapleader" variable in key mapping. If
"mapleader" is unset or empty then "\" is used. Example: +
\{nbsp}[c]:map <Leader>h :echo "Hello"<CR>[c] +
works like +
\{nbsp}[c]:map \h :echo "Hello"<CR>[c] +
but after +
\{nbsp}[c]let mapleader = ","[c] +
it works like +
\{nbsp}[c]:map ,h :echo "Hello"<CR>[c]
________________________________________________________________________________
section::Abbreviations[abbreviations]
Xulmus can automatically replace words identified as abbreviations,
which may be used to save typing or to correct commonly misspelled
words. An abbreviation can be one of three types that are defined by the
types of constituent characters. Whitespace and quotes are non-keyword
types, and all other characters are keyword types.
1. A "full-id" abbreviation consists entirely of keyword characters
(e.g., "teh", "msoft").
2. An "end-id" abbreviation ends in keyword character but otherwise
contains all non-keyword characters (e.g., "'i").
3. A "non-id" abbreviation ends in a non-keyword character but otherwise
contains any non-whitespace character (e.g., "def'").
Strings that cannot be abbreviations include "a'b" and "a b".
An abbreviation is recognized when a space, quote character, or
[m]<C-]>[m] is typed after the abbreviation. There are no default
abbreviations, and abbreviations are never recursive.
|:ab| |:abbreviate|
||:ab[breviate] {lhs} {rhs}|| +
||:ab[breviate] {lhs}|| +
||:ab[breviate]||
________________________________________________________________________________
Abbreviate a key sequence. Abbreviate {lhs} to {rhs}. If only {lhs} is given,
list all abbreviations that start with {lhs}. If no arguments are given,
list all abbreviations.
________________________________________________________________________________
|:ca| |:cabbrev|
||:ca[bbrev] {lhs} {rhs}|| +
||:ca[bbrev] {lhs}|| +
||:ca[bbrev]||
________________________________________________________________________________
Abbreviate a key sequence for Command-line mode. Same as [c]:ab[breviate][c],
but for Command-line mode only.
________________________________________________________________________________
|:ia| |:iabbrev|
||:ia[bbrev] {lhs} {rhs}|| +
||:ia[bbrev] {lhs}|| +
||:ia[bbrev]||
________________________________________________________________________________
Abbreviate a key sequence for Insert mode. Same as [c]:ab[breviate][c] but
for Insert mode only.
________________________________________________________________________________
|:una| |:unabbreviate|
||:una[bbreviate] {lhs}|| +
________________________________________________________________________________
Remove an abbreviation.
________________________________________________________________________________
|:cuna| |:cunabbrev|
||:cuna[bbrev] {lhs}|| +
________________________________________________________________________________
Remove an abbreviation for Command-line mode. Same as [c]:una[bbreviate][c],
but for Command-line mode only.
________________________________________________________________________________
|:iuna| |:iunabbrev|
||:iuna[bbrev] {lhs}|| +
________________________________________________________________________________
Remove an abbreviation for Insert mode. Same as [c]:una[bbreviate][c] but for
Insert mode only.
________________________________________________________________________________
|:abc| |:abclear| +
||:abc[lear]||
________________________________________________________________________________
Remove all abbreviations.
________________________________________________________________________________
|:cabc| |:cabclear| +
||:cabc[lear]||
________________________________________________________________________________
Remove all abbreviations for Command-line mode.
________________________________________________________________________________
|:iabc| |:iabclear| +
||:iabc[lear]||
________________________________________________________________________________
Remove all abbreviations for Insert mode.
________________________________________________________________________________
section::User-defined{nbsp}commands[user-commands]
|:com| |:command|
||:com[mand]|| +
________________________________________________________________________________
List all user-defined commands.
________________________________________________________________________________
||:com[mand] {cmd}|| +
________________________________________________________________________________
List all user-defined commands that start with {cmd}.
________________________________________________________________________________
||:com[mand][!] [{attr}...] {cmd} {rep}|| +
________________________________________________________________________________
Define a new user command. The name of the command is {cmd} and its replacement
text is {rep}. The command's attributes are {attr}. If a command with this name
already exists an error is reported unless [!] is specified, in which case the
command is redefined. Unlike Vim, the command may start with a lowercase
letter.
The command's behavior can be specified by providing attributes when the
command is defined.
|E175| |E176| |:command-nargs| +
Argument handling
By default user commands accept no arguments. This can be changed by specifying
the -nargs attribute.
The valid values are:
[frame="topbot",grid="none",cols="1,4"]
|===============================================================================
|*-nargs=0*|No arguments are allowed (default)
|*-nargs=1*|One argument is allowed
|*-nargs=**|Zero or more arguments are allowed
|*-nargs=?*|Zero or one argument is allowed
|*-nargs=+*|One or more arguments are allowed
|===============================================================================
|E180| |E181| |:command-complete| +
Argument completion
Completion for arguments to user defined commands is not available by default.
Completion can be enabled by specifying one of the following arguments to the
-complete option when defining the command.
[frame="topbot",grid="none",cols="1,4"]
|===============================================================================
|*altstyle* |alternate author style sheets
|*bookmark* |bookmarks
|*buffer* |buffers
|*color* |color schemes
|*command* |Ex commands
|*dialog* |Songbird dialogs
|*dir* |directories
|*environment* |environment variables
|*event* |autocommand events
|*file* |files
|*help* |help tags
|*highlight* |highlight groups
|*javascript* |JavaScript expressions
|*macro* |named macros
|*mapping* |user mappings
|*menu* |menu items
|*option* |Xulmus options
|*preference* |Songbird preferences
|*search* |search engines and keywords
|*shellcmd* |shell commands
|*sidebar* |sidebar panels
|*url* |URLs
|*usercommand* |user commands
|*custom,{func}*|custom completion, provided by {func}
|===============================================================================
|E467| |E468| |:command-completion-custom| +
Custom completion
Custom completion can be provided by specifying the "custom,{func}" argument to
-complete. The {func} is called with two arguments, a completion context, and
an object describing the command's arguments. It should set the context's
\'completions' property, or return an object, with \'items' and \'start'
properties, describing the completions and where the replacement is to start.
*start* is the index into the word being completed at which the returned values
should be applied and *completions* is a two dimensional array of the form:
[[arg1, description1], [arg2, description2], ...]
// TODO: add examples
|E177| |E178| |:command-count| +
Count handling
By default user commands do not accept a count. Use the -count attribute if
you'd like to have a count passed to your user command. This will then be
available for expansion as <count> in the argument.
|:command-bang| +
Special cases
By default a user command does not have a special version, i.e. a version
executed with the ! modifier. Providing the -bang attribute will enable this
and <bang> will be available in the argument.
|:command-description| +
Command description
The command's description text can be set with -description. Otherwise it will
default to "User-defined command".
|:command-replacement-text| +
Replacement text
The replacement text {rep} is scanned for escape sequences and these are
replaced with values from the user-entered command line. The resulting string
is then executed as an Ex command.
The valid escape sequences are:
[frame="topbot",grid="none",cols="1,4"]
|===============================================================================
|*<args>* |The command arguments exactly as supplied
|*<count>*|Any supplied count, e.g. 5
|*<bang>* |! if the command was executed with the ! modifier
|*<lt>* |A literal '<' character to allow for a literal copy of one of the escape sequences. E.g. <lt>args> will expand to a literal <args>
|===============================================================================
"q-" can be prefixed to the escape sequence so that the value is quoted, making
it suitable for expression evaluation. Example: <q-args>
________________________________________________________________________________
|:comc| |:comclear| +
||:comc[lear]||
________________________________________________________________________________
Delete all user-defined commands.
________________________________________________________________________________
|:delc| |:delcommand|
||:delc[ommand] {cmd}|| +
________________________________________________________________________________
Delete the user-defined command {cmd}.
________________________________________________________________________________
section::Examples[command-examples]
Add a :Google command to search via google:
\{nbsp}[c]:command -nargs=* Google open google <args>[c]
// TODO: add decent examples
// vim: set filetype=asciidoc:

View File

@@ -1,251 +0,0 @@
heading::Marks[different-marks,marks]
Xulmus supports a number of different marks:
- Bookmarks which allow you to mark a web page as one of your favorites for
easy access.
- QuickMarks allow you to define up to 62 (a-zA-Z0-9) web sites (or groups of
web sites) which you visit most often.
- Local marks to store the position within a web page.
- History is also a special type of marks, as Xulmus automatically
remembers sites which you have visited in the past.
section::Bookmarks[bookmarks]
|a| |:bma| |:bmark|
||:bma[rk][!] [a][-title=title][a] [a][-keyword=kw][a] [a][-tags=tag1,tag2][a] [a][url][a]|| +
||a||
____________________________________________________________________________
Add a bookmark. +
The following options are interpreted:
- -title="custom title" (short option: -t)
- -tags=comma,separated,tag,list (short option: -T)
- -keyword=keyword (short option: -k)
If [!] is present, a new bookmark is always added. Otherwise, the first
bookmark matching [a][url][a] is updated.
When creating a new bookmark, if [a][-title][a] isn't given, either the web
page's title or URL is used. You can omit the optional [a][url][a] argument, so
just do [c]:bmark[c] to bookmark the currently loaded web page with a default
title and without any tags.
____________________________________________________________________________
|A| +
||A||
________________________________________________________________________________
Toggle bookmarked state of current URL. Add/remove a bookmark for the current
location, depending on if it is already bookmarked or not. In contrast to the
[c]:bmark[c] command, the bookmark is just _starred_ which means it is placed
in the _Unfiled Bookmarks Folder_ instead of the bookmarks menu.
________________________________________________________________________________
|:bmarks|
||:bmarks[!] [a][filter][a]|| +
________________________________________________________________________________
List or open multiple bookmarks. Open the message window at the bottom of the
screen with all bookmarks which match [a][filter][a] either in the title or
URL. You can then use extended hint commands like [m];o[m] to open the desired
bookmark.
The special version [c]:bmarks![c] works the same as [c]:bmarks[c] except it
opens all the found bookmarks in new tabs.
Filter can also contain the following options: +
-tags=comma,separated,tag,list (short option: -T) +
-max=N (short options: -m)
________________________________________________________________________________
|:delbm| |:delbmarks|
||:delbm[arks] [a][url][a]|| +
||:delbm[arks]!||
________________________________________________________________________________
Delete a bookmark. Deletes *all* bookmarks which match the [a][url][a]. If
omitted, [a][url][a] defaults to the URL of the current buffer. Use [m]<Tab>[m]
key on a string to complete the URL which you want to delete.
If ! is specified then all bookmarks will be deleted.
________________________________________________________________________________
// TODO: why is this duplicated in browsing?
section::History[history]
|<C-o>| +
||[count]<C-o>||
________________________________________________________________________________
Go to an older position in the jump list. The jump list is just the browser
history for now. If [count] is specified go back [count] pages.
________________________________________________________________________________
|<C-i>| +
||[count]<C-i>||
________________________________________________________________________________
Go to a newer position in the jump list. The jump list is just the browser
history for now. If [count] is specified go forward [count] pages.
________________________________________________________________________________
|<M-Left>| |<A-Left>| |H| +
||[count]H||
________________________________________________________________________________
Go back in the browser history. If [count] is specified go back [count] pages.
________________________________________________________________________________
|<M-Right>| |<A-Right>| |L| +
||[count]L||
________________________________________________________________________________
Go forward in the browser history. If [count] is specified go forward [count]
pages.
________________________________________________________________________________
|:ba| |:back|
||:[count]ba[ck] [a][url][a]|| +
||:[count]ba[ck]!|| +
________________________________________________________________________________
Go back in the browser history. If [count] is specified go back [count] pages. +
The special version [c]:back![c] goes to the beginning of the browser history.
________________________________________________________________________________
|:fw| |:fo| |:forward|
||:[count]fo[rward] [a][url][a]|| +
||:[count]fo[rward]!|| +
________________________________________________________________________________
Go forward in the browser history. If [count] is specified go forward [count]
pages. +
The special version [c]:forward![c] goes to the end of the browser history.
________________________________________________________________________________
|:hs| |:hist| |:history|
||:hist[ory][!] [a][filter][a]|| +
________________________________________________________________________________
Show recently visited URLs. Open the message window at the bottom of the screen
with all history items which match [a][filter][a] either in the title or URL.
The special version [c]:history![c] works the same as [c]:history[c] except
it opens all the found items in new tabs.
Filter can also contain the following options: +
-max=N (short options: -m)
________________________________________________________________________________
section::QuickMarks[quickmarks]
|go| +
||go[a]{a-zA-Z0-9}[a]||
________________________________________________________________________________
Jump to a QuickMark in the current tab. Open any QuickMark in the current tab.
You can mark any URLs with [m]M[m][a]{a-zA-Z0-9}[a]. These QuickMarks are
persistent across browser sessions.
________________________________________________________________________________
|gn| +
||gn[a]{a-zA-Z0-9}[a]||
________________________________________________________________________________
Jump to a QuickMark in a new tab. Works like [m]go[m][a]{a-zA-Z0-9}[a] but
opens the QuickMark in a new tab. Whether the new tab is activated or not
depends on the 'activate' option. +
Mnemonic: Go in a new tab. [m]gt[m] would make more sense but is already
taken.
________________________________________________________________________________
|M| +
||M[a]{a-zA-Z0-9}[a]||
________________________________________________________________________________
Add new QuickMark for current URL. You can go to a marked URL in the current
tab with [m]go[m][a]{a-zA-Z0-9}[a] or in a new tab with
[m]gn[m][a]{a-zA-Z0-9}[a]. These QuickMarks are persistent across browser
sessions.
________________________________________________________________________________
|:delqm| |:delqmarks|
||:delqm[arks] {marks}|| +
||:delqm[arks]!||
________________________________________________________________________________
Delete the specified QuickMarks. QuickMarks are presented as a list.
Examples:
* [c]:delqmarks Aa b p[c] deletes QuickMarks A, a, b and p +
* [c]:delqmarks b-p[c] deletes all QuickMarks in the range b to p +
* [c]:delqmarks![c] deletes all QuickMarks
________________________________________________________________________________
|:qma| |:qmark|
||:qma[rk] {a-zA-Z0-9} [a][url][a]|| +
________________________________________________________________________________
Mark a URL with a letter for quick access. You can also mark whole groups
like this: +
[c]:qmark f +++http://forum1.com+++, +++http://forum2.com+++, imdb some artist[c]
________________________________________________________________________________
|:qmarks|
||:qmarks [a][arg][a]||
________________________________________________________________________________
Show all QuickMarks. If [a][arg][a] is specified then limit the list to those
QuickMarks mentioned.
________________________________________________________________________________
section::Local{nbsp}marks[localmarks]
|m| +
||m[a]{a-zA-Z}[a]||
________________________________________________________________________________
Set mark at the cursor position. Marks a-z are local to the buffer, whereas
A-Z are valid between buffers.
________________________________________________________________________________
|$$`$$| |$$'$$| +
||'[a]{a-zA-Z}[a]||
________________________________________________________________________________
Jump to the mark. Marks a-z are local to the buffer, whereas A-Z are valid
between buffers.
________________________________________________________________________________
|:delm| |:delmarks|
||:delm[arks] {marks}|| +
||:delm[arks]!||
________________________________________________________________________________
Delete the specified marks. Marks are presented as a list.
Examples:
* [c]:delmarks Aa b p[c] deletes marks A, a, b and p +
* [c]:delmarks b-p[c] deletes all marks in the range b to p +
* [c]:delmarks![c] deletes all marks for the current buffer
________________________________________________________________________________
|:ma| |:mark|
||:ma[rk] {a-zA-Z}||
________________________________________________________________________________
Mark current location within the web page.
________________________________________________________________________________
|:marks| +
||:marks [a][arg][a]||
________________________________________________________________________________
Show all location marks of the current web page. If [a][arg][a] is specified then
limit the list to those marks mentioned.
________________________________________________________________________________
// vim: set filetype=asciidoc:

View File

@@ -1,60 +0,0 @@
heading::Error{nbsp}and{nbsp}informational{nbsp}messages[messages]
|message-history| +
Xulmus stores all info and error messages in a message history. The type of
info messages output can be controlled by the 'verbose' option. The number of
stored messages can be set with the 'messages' option.
|:mes| |:messages| +
||:mes[sages]||
________________________________________________________________________________
Display previously given messages.
________________________________________________________________________________
|:messc| |:messclear| +
||:messc[lear]||
________________________________________________________________________________
Clear the message history.
________________________________________________________________________________
|g<| +
||g<||
________________________________________________________________________________
Redisplay the last command output. Only the most recent command's output is
available.
________________________________________________________________________________
|pager| |more-prompt| +
-- More --
-- More -- SPACE/d/j: screen/page/line down, b/u/k: up, q: quit
This message is given when the message window is filled with messages. It is
only given when the 'more' option is on. It is highlighted with the *MoreMsg*
group.
[frame="none",grid="none",cols="1,2",options="header"]
|===============================================================================
|Type |effect
|<CR> or j or <Down> |one more line
|d |down a page (half a screen)
|<Space> or <PageDown> |down a screen
|G |down all the way, until the hit-enter prompt
|
|<BS> or k or <Up> |one line back
|u |up a page (half a screen)
|b or <PageUp> |back a screen
|g |back to the start
|
|q, <Esc> or CTRL-C |stop the listing
|: |stop the listing and enter a command-line
|; |start an [j]extended-hints[j] command
|<C-Y> |yank (copy) a modeless selection to the clipboard
|===============================================================================
// vim: set filetype=asciidoc:

View File

@@ -1,895 +0,0 @@
heading::Options[options]
Xulmus has a number of internal variables and switches which can be set to
achieve special effects. These options come in 5 forms:
[frame="topbot",grid="none",cols="1,4"]
|===============================================================================
|*boolean* |can only be on or off
|*number* |has a numeric value
|*string* |has a string value
|*charlist* |like a string but with unique characters
|*stringlist*|a comma-separated list of strings
|===============================================================================
section::Setting{nbsp}options[set-option,E764]
|:set| |:se| +
||:se[t]||
____
Show all options that differ from their default value.
____
||:se[t] all||
____
Show all options.
____
|E518| |E519|
||:se[t] {option}?|| +
____
Show value of {option}.
____
||:se[t] {option} [...]|| +
____
Toggle option: set, switch it on. +
Number option: show value. +
String option: show value.
____
||:se[t] no[a]{option}[a] [...]|| +
____
Toggle option: Reset, switch it off.
____
||:se[t] {option}! [...]|| +
||:se[t] inv[a]{option}[a] [...]|| +
____
Toggle option: Invert value.
____
||:se[t] inv[a]{option}[a]={value} [...]|| +
||:se[t] {option}!={value} [...]|| +
____
For list options, toggle the specified values.
If the option is a list, the given values are toggled. Given +
\{nbsp}[c]:set opt=foo,bar[c] +
then, +
\{nbsp}[c]:set opt!=foo,baz[c] +
results in +
\{nbsp}opt=bar,baz
____
|:set-default|
||:se[t] {option}& [...]|| +
____
Reset option to its default value.
____
||:se[t] all&||
____
Set all options to their default value.
____
|:set-args| |E487| |E521|
||:se[t] {option}={value} [...]|| +
____
Set string or number option to {value}. +
For numeric options the value must be given in decimal.
The old value can be inserted by typing [m]<Tab>[m].
____
|:set+=|
||:se[t] {option}+={value} [...]|| +
____
Add the {value} to a number option, or append the {value} to a string option.
When the option is a comma separated list, a comma is added, unless the value
was empty. If the option is a list of flags, superfluous flags are removed.
When adding a flag that was already present the option value doesn't change.
____
|:set^=|
||:se[t] {option}^={value} [...]|| +
____
Multiply the {value} to a number option, or prepend the {value} to a string
option. When the option is a comma separated list, a comma is added, unless the
value was empty.
____
|:set-=|
||:se[t] {option}-={value} [...]|| +
____
Subtract the {value} from a number option, or remove the {value} from a string
option if it is there. If the {value} is not found in a string option, there
is no error or warning. When the option is a comma separated list, a comma is
deleted, unless the option becomes empty. When the option is a list of flags,
{value} must be exactly as they appear in the option. Remove flags one by one
to avoid problems.
____
|:setlocal| |:setl|
||:setl[ocal]|| +
||:setl[ocal] all|| +
||:setl[ocal] {option}?|| +
||:setl[ocal] {option}|| +
||:setl[ocal] no[a]{option}[a]|| +
||:setl[ocal] inv[a]{option}[a]|| +
||:setl[ocal] {option}&|| +
||:setl[ocal] all&|| +
||:setl[ocal] {option}={value}|| +
||:setl[ocal] {option}+={value}|| +
||:setl[ocal] {option}^={value}|| +
||:setl[ocal] {option}-={value}|| +
____
The same as [c]:set[c] command, but operates on current tab options
only. See [c]:set[c] for details.
____
|:setglobal| |:setg|
||:setg[lobal]|| +
||:setg[lobal] all|| +
||:setg[lobal] {option}?|| +
||:setg[lobal] {option}|| +
||:setg[lobal] no[a]{option}[a]|| +
||:setg[lobal] inv[a]{option}[a]|| +
||:setg[lobal] {option}&|| +
||:setg[lobal] all&|| +
||:setg[lobal] {option}={value}|| +
||:setg[lobal] {option}+={value}|| +
||:setg[lobal] {option}^={value}|| +
||:setg[lobal] {option}-={value}|| +
____
The same as [c]:set[c] command, but operates on global options only.
See [c]:set[c] for details.
____
|expand-environment-var| |expand-env| |:set_env| +
Environment variables are expanded for path options like 'cdpath' and
'runtimepath'. The variable notation is _$VAR_ (terminated by a non-word
character) or _$\\{VAR}_. _%VAR%_ is also supported on Windows.
section::Setting{nbsp}Songbird{nbsp}options[songbird-options,preferences]
Songbird options can be viewed and set with the following commands:
|:prefs| |:preferences| +
||:pref[erences]||
________________________________________________________________________________
Show the Songbird preferences dialog. You can change the player preferences
from this dialog. Be aware that not all Songbird preferences work, because
Xulmus overrides some key bindings and changes Songbird's GUI.
________________________________________________________________________________
|:prefs!| |:preferences!| +
||:pref[erences]!||
________________________________________________________________________________
Opens about:config in the current tab where you can change advanced Songbird
preferences.
________________________________________________________________________________
|:set!| |:set-!|
||:se[t]! {preference}={value}|| +
________________________________________________________________________________
Change any Songbird {preference} (those in the about:config window). You can
also reset/delete those preferences with [c]:set! {preference}&[c].
________________________________________________________________________________
|overridden-preferences| +
Xulmus sets several Songbird preferences at startup. If this is undesirable,
they can be changed to a different value in your RC file using
[c]:set! {preference}={value}[c]
The following preferences are set:
* http://kb.mozillazine.org/Dom.popup_allowed_events[dom.popup_allowed_events]
* http://kb.mozillazine.org/Accessibility.typeaheadfind.autostart[accessibility.typeaheadfind.autostart]
* http://kb.mozillazine.org/Accessibility.typeaheadfind[accessibility.typeaheadfind]
// TODO: others?
section::List{nbsp}of{nbsp}options[list-options]
|\'act'| |\'activate'| +
||'activate' 'act'|| stringlist (default: "homepage,quickmark,tabopen,paste")
____
Define when tabs are automatically activated. Available items:
[frame="topbot",grid="none",cols="1,4"]
|===============================================================================
|*homepage* |[m]gH[m] mapping
|*quickmark*|[m]go[m] and [m]gn[m] mappings
|*tabopen* |[c]:tabopen[!][c] command
|*paste* |[m]P[m] and [m]gP[m] mappings
|===============================================================================
____
|$CDPATH|
|\'cd'| |\'cdpath'| +
||'cdpath' 'cd'|| string (default: equivalent to _$CDPATH_ or ",,")
____
List of directories searched when executing the [c]:cd[c] command. This is
only used for relative paths; for absolute paths the option is ignored. An
empty string between two commas (,,) means to search in the current directory.
____
|\'cpt'| |\'complete'| +
||'complete' 'cpt'|| charlist (default: slf)
____
Items which are completed at the [c]:open[c] prompts. Available items:
[frame="topbot",grid="none",cols="1,10"]
|===============================================================================
|*s*|Search engines and keyword URLs
|*f*|Local files
|*l*|Songbird location bar entries (bookmarks and history sorted in an intelligent way)
|*b*|Bookmarks
|*h*|History
|*S*|Suggest engines
|*t*|Open tabs
|===============================================================================
The order is important, so [c]:set complete=bs[c] would list bookmarks first,
and then any available quick searches.
Warning: Using *b* and *h* can make completion very slow if there are many
items.
____
|\'ds'| |\'defsearch'| +
||'defsearch' 'ds'|| string (default: "google")
____
Sets the default search engine. The default search engine name is used in the
[c]:open [arg][c] command if [a][arg][a] neither looks like a URL nor like a
specified search engine/keyword.
This means that if you set 'defsearch' to "youtube", then [c]:open arnold
schwarzenegger[c] will be exactly the same as [c]:open youtube arnold
schwarzenegger[c]. Therefore, you need to add a keyword or search engine
"youtube" first.
If 'defsearch' is empty, then Songbird will always attempt to open the
raw [a][arg][a].
____
|\'editor'| +
||'editor'|| string (default: "gvim -f")
____
Set the external text editor.
Sets the editor to run when [m]<C-i>[m] is pressed in Insert and TextArea
modes.
Warning: Xulmus will not behave correctly if the editor forks its own
process, such as with gvim without the -f argument.
____
|\'noex'| |\'noexrc'| |\'ex'| |\'exrc'| +
||'exrc' 'ex'|| boolean (default: off)
____
Allow reading of an RC file in the current directory. This file is sourced in
addition to, and after, your default RC file.
____
|\'eht'| |\'extendedhinttags'| +
||'extendedhinttags' 'eht'|| string
____
(default: +++//*[@onclick or @onmouseover or @onmousedown or @onmouseup or
@oncommand or @class='lk' or @role='link'] | //input[not(@type='hidden')] | //a
| //area | //iframe | //textarea | //button | //select |
//xhtml:input[not(@type='hidden')] | //xhtml:a | //xhtml:area | //xhtml:iframe
| //xhtml:textarea | //xhtml:button | //xhtml:select+++)
The XPath string of hintable elements activated by [m];[m].
____
|\'noeb'| |\'noerrorbells'| |\'eb'| |\'errorbells'| +
||'errorbells' 'eb'|| boolean (default: off)
____
Ring the bell when an error message is displayed.
____
|\'ei'| |\'eventignore'| +
||'eventignore'|| stringlist (default: "")
____
A list of autocommand event names which should be ignored. If the list contains
the value "all" then all events are ignored.
____
|\'enc'| |\'encoding'| +
||'encoding'|| string (default: "UTF-8")
____
Changes the character encoding of the current buffer. Valid only for the
current page.
____
|\'fenc'| |\'fileencoding'| +
||'fileencoding'|| string (default: "UTF-8")
____
Changes the character encoding that Xulmus uses to read and write files.
____
|\'nofc'| |\'nofocuscontent'| |\'fc'| |\'focuscontent'| +
||'focuscontent' 'fc'|| boolean (default: off)
____
Focus the content after a page has loaded. This is useful if you always
want to stay in Normal mode when browsing between web sites. When "on", it
blurs any textbox which often is automatically focused on page load.
If you usually like 'focuscontent' but sometimes you'd like to focus the
first input field, you can use [m]gi[m] to jump to it.
____
|\'fh'| |\'followhints'| +
||'followhints' 'fh'|| number (default: 0)
____
Change the behaviour of [m]<Return>[m] in Hints mode. Possible values:
[frame="topbot",grid="none",cols="1,10"]
|===============================================================================
|*0*|Follow the first hint as soon as typed text uniquely identifies it.
|*1*|Follow the selected hint on [m]<Return>[m].
|*2*|Follow the selected hint on [m]<Return>[m] only if it's been [m]<Tab>[m]-selected.
|===============================================================================
____
|\'nofs'| |\'nofullscreen'| |\'fs'| |\'fullscreen'| +
||'fullscreen' 'fs'|| boolean (default: off)
____
Show the current window fullscreen. Also hide certain GUI elements like the
statusline.
____
|\'go'| |\'guioptions'| +
||'guioptions' 'go'|| charlist (default: "")
____
Show or hide certain GUI elements like the menu or toolbar. Supported characters:
[frame="topbot",grid="none",cols="1,10"]
|===============================================================================
|*m*|Menubar
|*T*|Toolbar
|*p*|Player controls
|*n*|Tab number
|*N*|Tab number over image
|*b*|Bottom scrollbar
|*r*|Right scrollbar
|*l*|Left scrollbar (*l* and *r* are mutually exclusive)
|===============================================================================
You can also hide the tab bar with [c]:set showtabline=0[c].
Note: scrollbar changes require a page reload to take effect.
____
|\'hf'| |\'helpfile'| +
||'helpfile' 'hf'|| string (default: "intro.html")
____
Name of the main help file. This is the tail component of the chrome URL as
displayed in the status line when viewing the page.
____
|\'hin'| |\'hintinputs'| +
||'hintinputs' 'hin'|| stringlist (default: "label,value")
____
When generating hints for input elements that do not have an explicit caption,
this specifies the methods to try and generate a textual hint. It tries the
options in the order that you give, and uses the first that it finds.
[frame="topbot",grid="none",cols="1,4"]
|===============================================================================
|*value*|The hint is the value displayed in a text input, or the selected option for a dropdown.
|*label*|The value of an explicit label for the input, this will not match most manually added labels that are found on sites.
|*name* |The name of the input will be used, although the name is not designed for user consumption, it is frequently very similar to the label.
|===============================================================================
____
|\'hm'| |\'hintmatching'| +
||'hintmatching' 'hm'|| string (default: contains)
____
Change the hint matching algorithm during Hints mode. Possible values:
[frame="topbot",grid="none",cols="1,4"]
|===============================================================================
|*contains* |The typed characters are split on whitespace, and these character groups have to match anywhere inside the text of the link.
|*wordstartswith*|The typed characters are matched with the beginning of the first word (see 'wordseparators') in the link as long as possible. If no matches occur in the current word, then the matching is continued at the beginning of the next word. The words are worked through in the order they appear in the link. If the typed characters contain spaces, then the characters are split on whitespace. These character groups are then matched with the beginning of the words, beginning at the first one and continuing with the following words in the order they appear in the link.
|*firstletters* |Behaves like wordstartswith, but non-matching words aren't overleaped.
|*custom* |Delegate to a custom function: liberator.plugins.customHintMatcher(hintString)
|===============================================================================
____
|\'ht'| |\'hinttags'| +
||'hinttags' 'ht'|| string
____
(default: +++//*[@onclick or @onmouseover or @onmousedown or @onmouseup or
@oncommand or @class='lk' or @role='link'] | //input[not(@type='hidden')] | //a
| //area | //iframe | //textarea | //button | //select |
//xhtml:input[not(@type='hidden')] | //xhtml:a | //xhtml:area | //xhtml:iframe
| //xhtml:textarea | //xhtml:button | //xhtml:select+++)
XPath string of hintable elements activated by [m]f[m] and [m]F[m]
____
|\'hto'| |\'hinttimeout'| +
||'hinttimeout' 'hto'|| number (default: 0)
____
Timeout before automatically following a non-unique numerical hint. Set to 0
(the default) to only follow numeric hints after pressing [m]<Return>[m] or
when the hint is unique.
____
|\'hi'| |\'history'| +
||'history' 'hi'|| number (default: 500)
____
Number of Ex commands and search patterns to store in the command-line history.
____
|\'nohls'| |\'nohlsearch'| |\'hls'| |\'hlsearch'| +
||'hlsearch' 'hls'|| boolean (default: off)
____
Highlight previous search pattern matches
____
|\'noic'| |\'noignorecase'| |\'ic'| |\'ignorecase'| +
||'ignorecase' 'ic'|| boolean (default: on)
____
Ignore case in search patterns.
____
|\'nois'| |\'noincsearch'| |\'is'| |\'incsearch'| +
||'incsearch' 'is'|| boolean (default: on)
____
Show where the search pattern matches as it is typed.
Note: Incremental searching currently only works in the forward direction.
____
|\'noim'| |\'noinsertmode'| |\'im'| |\'insertmode'| +
||'insertmode' 'im'|| boolean (default: on)
____
Use Insert mode as the default for text areas. This is useful if you want to
use the known Songbird interface for editing text areas. Input fields default to
this behaviour irrespective of this option's setting.
Textarea mode can be entered with *<C-t>* from Insert mode.
____
// TODO: <C-t> is not hyperlinked as it's not documented yet.
|\'ls'| |\'laststatus'| +
||'laststatus' 'ls'|| number (default: 2)
____
Determines when the last window will have a status line. Possible values:
[frame="topbot",grid="none",cols="1,10"]
|===============================================================================
|*0*|Never
|*1*|Only if there are multiple windows
|*2*|Always
|===============================================================================
Note: laststatus=1 not implemented yet.
____
|\'nolks'| |\'nolinksearch'| |\'lks'| |\'linksearch'| +
||'linksearch' 'lks'|| boolean (default: off)
____
Limit the search to hyperlink text.
This includes (X)HTML elements with an "href" atrribute and XLink "simple" links.
____
|\'nolpl'| |\'lpl'| |\'noloadplugins'| |\'loadplugins'| +
||'loadplugins' 'lpl'|| boolean (default: on)
____
Load plugin scripts when starting up. When on, yet unloaded plugins are
automatically loaded after the xulmusrc file has been sourced. To
load plugins earlier, use the [c]:loadplugins[c] command within the
xulmusrc.
____
|\'maxitems'| +
||'maxitems'|| number (default: 20)
____
Maximum number of items to display at once in a listing.
____
|\'msgs'| |\'messages'| +
||'messages' 'msgs'|| number (default: 100)
____
Number of messages to store in the message history.
____
|\'nomore'| |\'more'| +
||'more'|| boolean (default: on)
____
Pause the message list window when more than one screen of listings is displayed.
____
|\'nextpattern'| +
||'nextpattern'|| stringlist (default: \bnext,^>$,^(>>|»)$,^(>|»),(>|»)$,\bmore\b)
____
Patterns to use when guessing the \'next' page in a document sequence when the
user hits [c]]][c]. Each pattern, in order, is matched against all links in the
page with the first match being used. The patterns are case insensitive regular
expressions and the link elements are those defined by 'hinttags'.
____
|\'newtab'| +
||'newtab'|| stringlist (default: "")
____
Define which Ex commands output the result in a new tab automatically. You can
also use [c]:tab command[c] to manually output a command in a new tab.
The possible values:
[frame="topbot",grid="none",cols="1,4"]
|===============================================================================
|*all* |All commands
|*addons* |[c]:addo[ns][c] command
|*downloads* |[c]:downl[oads][c] command
|*extoptions*|[c]:exto[ptions][c] command
|*help* |[c]:h[elp][c] command
|*javascript*|[c]:javascript![c] or [c]:js![c] command
|*prefs* |[c]:pref[erences]![c] or [c]:prefs![c] command
|===============================================================================
____
|\'noonline'| |\'online'| +
||'online'|| boolean (default: on)
____
Show and set the \'work offline' behavior.
____
|\'pageinfo' \'pa'| +
||'pageinfo' 'pa'||
charlist (default: gfm)
____
Desired info in the [c]:pageinfo[c] output. Available items:
[frame="topbot",grid="none",cols="1,10"]
|===============================================================================
|*g*|General info
|*f*|Feeds
|*m*|Meta tags
|===============================================================================
The order matters.
____
|\'pps'| |\'popups'| +
||'popups' 'pps'|| number (default: 1)
____
Define where to show requested popup windows.
Does not apply to windows which are opened by middle clicking a link,
they always open in a new tab. Possible values:
[frame="topbot",grid="none",cols="1,10"]
|===============================================================================
|*0*|Force to open in the current tab (Warning: this can stop some web sites from working correctly!)
|*1*|Always open in a new tab
|*2*|Open in a new window if it has a specific requested size (default in Songbird)
|*3*|Always open in a new window
|*4*|Open in the same tab unless it has a specific requested size
|===============================================================================
Note: This option does not change the popup blocker of Songbird in any way.
____
|\'previouspattern'| +
||'previouspattern'|| stringlist (default: \bprev|previous\b,^<$,^(<<|«)$,^(<|«),(<|«)$)
____
Patterns to use when guessing the \'previous' page in a document sequence when
the user hits [c][[[c]. Each pattern, in order, is matched against all links
in the page with the first match being used. The patterns are case insensitive
regular expressions and the link elements are those defined by 'hinttags'.
____
|\'repeat'| +
||'repeat'|| number (default: 0)
____
Set the playback repeat mode.
[frame="topbot",grid="none",cols="1,10"]
|===============================================================================
|*0*|Repeat none
|*1*|Repeat one
|*2*|Repeat all
|===============================================================================
____
|$XULMUS_RUNTIME|
|\'rtp'| |\'runtimepath'| +
||'runtimepath' 'rtp'|| stringlist
____
(default: _$XULMUS_RUNTIME_ or $$Unix, Mac: "~/.xulmus", Windows: "~/xulmus"$$)
List of directories searched for runtime files: +
colors/ +
macros/ +
plugin/ +
Example: [c]:set runtimepath=$$~/myxulmus,~/.xulmus$$[c] +
This will search for plugins in both $$"~/myxulmus/plugin" and
"~/.xulmus/plugin"$$
On startup, if the environment variable _$XULMUS_RUNTIME_ does not
exist, Xulmus will set it to match this value.
____
|\'scr'| |\'scroll'| +
||'scroll' 'scr'|| number (default: 0)
____
Number of lines to scroll with [m]<C-u>[m] and [m]<C-d>[m] commands.
The number of lines scrolled defaults to half the window size.
When a [count] is specified to the [m]<C-u>[m] or [m]<C-d>[m] commands this is
used to set the value of 'scroll' and also used for the current command. The
value can be reset to half the window height with [c]:set scroll=0[c].
____
|\'shell'| |\'sh'| +
||'shell' 'sh'|| string (default: _$SHELL_ or "sh", Win32: "cmd.exe")
____
Shell to use for executing [c]:![c] and [c]:run[c] commands.
____
|\'shellcmdflag'| |\'shcf'| +
||'shellcmdflag' 'shcf'|| string (default: "-c", Win32: "/c")
____
Flag passed to shell when executing [c]:![c] and [c]:run[c] commands.
E.g. "bash -c gvim"
____
|\'nosmd'| |\'noshowmode'| |\'smd'| |\'showmode'| +
||'showmode' 'smd'|| boolean (default: on)
____
Show the current mode in the command line.
____
|\'ssli'| |\'showstatuslinks'| +
||'showstatuslinks' 'ssli'|| number (default: 1)
____
Show the destination of the link under the cursor in the status bar.
Also links which are focused by keyboard commands like [m]<Tab>[m] are shown. Possible values:
[frame="topbot",grid="none",cols="1,10"]
|===============================================================================
|*0*|Don't show link destination
|*1*|Show the link in the status line
|*2*|Show the link in the command line
|===============================================================================
____
|\'stal'| |\'showtabline'| +
||'showtabline' 'stal'|| number (default: 2)
____
Control when to show the tab bar of opened web pages. Possible values:
[frame="topbot",grid="none",cols="1,10"]
|===============================================================================
|*0*|Never show tab bar
|*1*|Show tab bar only if more than one tab is open
|*2*|Always show tab bar
|===============================================================================
____
|\'shuffle'| +
||'shuffle'|| boolean (default: false)
____
Play tracks in shuffled order.
____
|\'noscs'| |\'nosmartcase'| |\'scs'| |\'smartcase'| +
||'smartcase' 'scs'|| boolean (default: on)
____
Override the 'ignorecase' option if the pattern contains uppercase characters.
This is only used if the 'ignorecase' option is set.
____
|\'suggestengines'| +
||'suggestengines'|| stringlist (default: "google")
____
Set the search engines which can be used for completion suggestions.
Add "S" to the 'complete' option if you want to use this feature.
Warning: This feature could make tab-completion slower because it needs to
wait for changes, so use it only if you have a fast internet connection.
____
|\'titlestring'| +
||'titlestring'|| string (default: "Xulmus")
____
Change the title of the player window.
Xulmus changes the player title from "Songbird" to
"Title of tab - Xulmus". +
If you don't like that, you can restore it with:
[c]:set titlestring=Songbird[c].
____
|\'noum'| |\'nousermode'| |\'um'| |\'usermode'| +
||'usermode' 'um'|| boolean (default: off)
____
Show current website with a minimal style sheet to make it easily accessible.
Note: this is a local option for now, a global value may be supported in the
future.
____
|\'urlseparator'| +
||'urlseparator'|| string (default: ",\s")
____
Set the separator regex used to separate multiple URL args. Multiple arguments
can be specified for [c]:open[c], and similar commands, using this regex as
the separator. Using whitespace alone is not generally useful since it is often
contained in a single argument. E.g. [c]:open linus torvalds[c] should perform
a single search for the key words "linus" and "torvalds". If this is set to the
empty string then these arguments will never be split.
____
|\'verbose', \'vbs'| +
||'verbose' 'vbs'|| number (default: 1)
____
Define which info messages are displayed.
When bigger than zero, Xulmus will give messages about what it is doing.
These can be viewed at any time with the [c]:messages[c] command. The highest
value is 15, being the most verbose mode.
TODO: list levels and associated messages
____
|\'novb'| |\'novisualbell'| |\'vb'| |\'visualbell'| +
||'visualbell' 'vb'|| boolean (default: off)
____
Use visual bell instead of beeping on errors. The visual bell style is
controlled by [c]:hi Bell[c].
To disable both the audible and visual bells use [c]:set visualbell[c]
and [c]:hi Bell display: none;[c]
____
|\'wildcase'| |\'wic'| +
||'wildcase' 'wic'|| string (default: "smart")
____
Defines how completions are matched with regard to character case. Possible values:
[frame="topbot",grid="none",cols="1,4"]
|===============================================================================
|"smart" |Case is significant when capital letters are typed
|"match" |Case is always significant
|"ignore"|Case is never significant
|===============================================================================
____
|\'wildignore'| |\'wig'| +
||'wildignore' 'wig'|| stringlist (default: "")
____
List of file patterns to ignore when completing files. E.g. to ignore object
files and Vim swap files [c]:set wildignore=".*\.o,\..*\.s[a-z]\\{2}"[c]
Note: Unlike Vim each pattern is a regex rather than a glob.
____
|\'wim'| |\'wildmode'| +
||'wildmode' 'wim'|| stringlist (default: "list:full")
____
Defines how command-line completion works.
It is a comma-separated list of parts, where each part specifies
what to do for each consecutive use of the completion key.
The first part specifies the behavior for the first use of the completion key,
the second part for the second use, etc.
These are the possible values for each part:
[frame="topbot",grid="none",cols="1,4"]
|===============================================================================
|"" |Complete only the first match.
|"full" |Complete the next full match. After the last, the original string is used.
|"longest" |Complete till the longest common string.
|"list" |When more than one match, list all matches.
|"list:full" |When more than one match, list all matches and complete the first match.
|"list:longest" |When more than one match, list all matches and complete till
the longest common string. When there is only a single match,
it is fully completed regardless of the case.
|===============================================================================
____
|\'wop'| |\'wildoptions'| +
||'wildoptions' 'wop'|| stringlist (default: "")
____
A list of words that change how command-line completion is done.
Possible words:
[frame="topbot",grid="none",cols="1,4"]
|===============================================================================
|*auto*|Automatically show completions while you are typing.
|*sort*|Always sort the completion list, overriding the 'complete' option.
|===============================================================================
____
|\'wsp'| |\'wordseparators'| +
||'wordseparators' 'wsp'|| string (default: [\.,!\?:;/\\"\^\$%&?\(\)\[\]\\{\\}<>#\\*\+\\|=~ _\\-])
____
A regex which defines the word separators which are used for the
'hintmatching' types "wordstartswith" and "firstletters" to split the words in
the text of a link.
____
// vim: set filetype=asciidoc:

View File

@@ -1,68 +0,0 @@
heading::Text{nbsp}search{nbsp}commands[text-search-commands]
Xulmus provides a Vim-like interface to Songbird's standard text search
functionality. There is no support for using regular expressions in search
commands as Songbird does not provide native regex support. It is unlikely that
this will ever be available.
|/| +
||/{pattern}[/]<CR>|| +
________________________________________________________________________________
Search forward for the first occurrence of {pattern}.
If "\c" appears anywhere in the pattern the whole pattern is handled as though
'ignorecase' is on. "\C" forces case-sensitive matching for the whole pattern. +
If "\l" appears in the pattern only the text of links is searched for a
match as though 'linksearch' is on. "\L" forces the entire page to be searched
for a match.
________________________________________________________________________________
|?| +
||?{pattern}[?]<CR>|| +
________________________________________________________________________________
Search backwards for {pattern}.
{pattern} can use the same modifiers as for [m]/[m]. +
Note: incremental searching currently only works in the forward direction.
________________________________________________________________________________
|n| +
||n||
________________________________________________________________________________
Find next. Repeat the last search 1 time (until count is supported).
________________________________________________________________________________
|N| +
||N||
________________________________________________________________________________
Find previous. Repeat the last search 1 time (until count is supported) in the
opposite direction.
________________________________________________________________________________
|$$*$$| +
||$$*$$||
________________________________________________________________________________
Search forward for the next word under the cursor.
________________________________________________________________________________
|$$#$$| +
||$$#$$||
________________________________________________________________________________
Search backward for the previous word under the cursor.
________________________________________________________________________________
|:noh| |:nohlsearch| +
||:noh[lsearch]||
________________________________________________________________________________
Remove the search highlighting. The document highlighting is turned back on
when another search command is used or the 'hlsearch' option is set.
________________________________________________________________________________
// vim: set filetype=asciidoc:

View File

@@ -1,217 +0,0 @@
heading::Player{nbsp}mode[player-mode,player]
The following features apply to Player mode which is activated when the media
tab has focus.
section::Playing{nbsp}tracks[playing-tracks]
|p_x| |:playerp| |:playerplay|
||:playerp[lay]|| +
||x||
________________________________________________________________________________
Play the current track.
________________________________________________________________________________
|p_z| |:playerpr| |:playerprev|
||:playerpr[ev]|| +
||z||
________________________________________________________________________________
Play the previous track.
________________________________________________________________________________
|p_b| |:playern| |:playernext|
||:playern[ext]|| +
||b||
________________________________________________________________________________
Play the next track.
________________________________________________________________________________
|p_c| |:playerpa| |:playerpause|
||:playerpa[use]|| +
||c||
________________________________________________________________________________
Pause/unpause the current track.
________________________________________________________________________________
|p_v| |:players| |:playerstop|
||:players[top]|| +
||v||
________________________________________________________________________________
Stop playing the current track.
________________________________________________________________________________
|p_x|
||x||
________________________________________________________________________________
Toggle shuffle mode.
________________________________________________________________________________
|p_r|
||r||
________________________________________________________________________________
Toggle repeat mode.
________________________________________________________________________________
|p_i|
||i||
________________________________________________________________________________
Select the currently playing track.
________________________________________________________________________________
section::Queueing{nbsp}tracks[queue,queueing]
|p_f| |:f| |:filter|
||:f[ilter] {artist} [a][album][a] [a][track][a]|| +
||f||
________________________________________________________________________________
Queue tracks by artist/album/track. If only {artist} is specified then all
tracks for that artist are played in album order. If [a][album][a] is also
specified then all tracks for that album are played. A specific track can be
specified with [a][track][a].
________________________________________________________________________________
section::Filtering{nbsp}the{nbsp}library[filter,filtering]
|p_F| |:F| |:Filter|
||:F[ilter] {keywords}|| +
||F||
________________________________________________________________________________
Filter and show the tracks as a view. The tracks are filtered by the {keywords}
provided as arguments. This text search applies over the default filter
properties, namely: Genre, Artist, Album and Track.
________________________________________________________________________________
section::Seeking{nbsp}to{nbsp}a{nbsp}track{nbsp}position[seeking]
|p_<Left>| |p_h|
||[count]h||
________________________________________________________________________________
Seek +10s.
________________________________________________________________________________
|p_<Right>| |p_l|
||[count]l||
________________________________________________________________________________
Seek -10s.
________________________________________________________________________________
|p_<S-Left>| |p_H|
||[count]H||
________________________________________________________________________________
Seek +1m.
________________________________________________________________________________
|p_<S-Right>| |p_L|
||[count]L||
________________________________________________________________________________
Seek -1m.
________________________________________________________________________________
|:see| |:seek|
||:see[k] {[HH:]MM:SS]}|| +
||:see[k] +{time[hms]} | -{time[hms]}|| +
________________________________________________________________________________
Seek to an absolute or relative position in a track. The position can be given
in seconds (s), minutes (m), or hours (h). If the unit is not specified then
seconds is assumed. The position is absolute unless the value is prefixed with
"-" or "+".
Positions may also be specified in [a][HH:]MM:SS[a] format.
________________________________________________________________________________
section::Adjusting{nbsp}the{nbsp}volume[volume]
|p_+| |p_=|
||+|| +
||=||
________________________________________________________________________________
Increase volume by 10%.
________________________________________________________________________________
|p_-|
||-|| +
________________________________________________________________________________
Decrease volume by 10%.
________________________________________________________________________________
|:vol| |:volume|
||:vol[ume] {value}|| +
||:vol[ume] +{value} | -{value}|| +
________________________________________________________________________________
Set the player volume. {value} can be an absolute value between 0 and 100% or a
relative value if prefixed with "-" or "+".
________________________________________________________________________________
section::Managing{nbsp}playlists[playlists]
|:load|
||:load [a][playlist][a]|| +
________________________________________________________________________________
Load [a][playlist][a]. If no playlist is specified then the main library view
is loaded.
________________________________________________________________________________
section::Changing{nbsp}media{nbsp}views[media-view,view]
|:mediav| |:mediaview|
||:mediav[iew] {view}|| +
________________________________________________________________________________
Change the media view to {view}. This can only be run when the media tab is the
current tab.
________________________________________________________________________________
section::Search{nbsp}commands[search]
|p_/|
||/{pattern}<CR>|| +
________________________________________________________________________________
Search forward for a track matching {pattern} in the visible media view.
________________________________________________________________________________
//|p_?|
//||?{pattern}<CR>|| +
//________________________________________________________________________________
//Search backwards for a track matching {pattern} in the visible media view.
//________________________________________________________________________________
|p_n|
||n|| +
________________________________________________________________________________
Find the next track. Repeats the last search. If the search hits BOTTOM of the
view, it continues from TOP.
________________________________________________________________________________
|p_N|
||N|| +
________________________________________________________________________________
Find the previous track. Repeats the last search in the opposite direction. If
the search hits TOP of the view, it continues from BOTTTOM.
________________________________________________________________________________
section::Rating{nbsp}tracks[rating]
|p_<C-5>| |p_<C-4>| |p_<C-3>| |p_<C-2>| |p_<C-1>| |p_<C-0>|
||<C-0>|| +
||<C-1>|| +
||<C-2>|| +
||<C-3>|| +
||<C-4>|| +
||<C-5>|| +
________________________________________________________________________________
Rate the current track with N stars.
________________________________________________________________________________
// vim: set filetype=asciidoc:

View File

@@ -1,32 +0,0 @@
heading::Printing[printing]
|:ha| |:hardcopy| +
||:ha[rdcopy][!]||
________________________________________________________________________________
Print current document. Open a GUI dialog where you can select the printer,
number of copies, orientation, etc. When used with [!], the dialog is skipped
and the default printer used.
________________________________________________________________________________
||:ha[rdcopy][!] >{filename}|| +
________________________________________________________________________________
As above, but write the output to {filename}.
Note: Not available on Windows.
________________________________________________________________________________
section::Songbird{nbsp}printing{nbsp}dialogs[songbird-print-dialogs]
The "Print Preview" and "Page Setup" dialogs can be opened via the [c]:dialog[c]
command
\{nbsp}[c]:dialog printpreview[c]
and
\{nbsp}[c]:dialog printsetup[c]
respectively.
// vim: set filetype=asciidoc:

View File

@@ -1,151 +0,0 @@
heading::Repeating{nbsp}commands[repeating]
Xulmus can repeat a number of commands and record macros.
section::Single{nbsp}repeats[single-repeat]
|.|
||[count].||
____________________________________________________________________________
Repeat the last keyboard mapping [count] times. Note that, unlike in Vim, this
does not apply solely to editing commands, mainly because Xulmus doesn't
have them.
____________________________________________________________________________
|@:|
||[count]@:||
____________________________________________________________________________
Repeat the last Ex command [count] times.
____________________________________________________________________________
section::Macros[macros,complex-repeat]
|q|
||q\\{0-9a-zA-Z}|| +
____________________________________________________________________________
Record a key sequence into a macro.
Available macros are {0-9a-zA-Z} (uppercase to append).
Type [m]q[m] to stop recording.
____________________________________________________________________________
|:macros|
||:mac[ros] [a][pat][a]|| +
________________________________________________________________________________
List recorded macros matching the optional regular expression [a][pat][a]. If
no regex is given, list all macros.
________________________________________________________________________________
|:delmac| |:delmacros|
||:delmac[ros] {args}|| +
||:delmac[ros]!||
________________________________________________________________________________
Delete recorded macros matching the regular expression {args}. If [!] is given
all macros are deleted.
________________________________________________________________________________
|@| |:play|
||:pl[ay] {arg}|| +
||[count]@{arg}||
____________________________________________________________________________
Plays the contents of macro with name {arg} [count] times. The [m]@[m] mapping
only accepts {0-9a-z} as {arg}.
____________________________________________________________________________
|@@|
||[count]@@||
____________________________________________________________________________
Replay the last executed macro [count] times.
____________________________________________________________________________
section::Using{nbsp}scripts[using-scripts]
|:so| |:source|
||:so[urce][!] {file}|| +
________________________________________________________________________________
Read Ex commands, JavaScript, or CSS from {file}. You can either source files
which mostly contain Ex commands like [c]map < gt[c] and put JavaScript code
within a:
--------------------------------------------------------------------------------
js <<EOF
hello = function () {
alert("Hello world");
}
EOF
--------------------------------------------------------------------------------
Or you can alternatively source a file which ends in _.js_. These files are
automatically sourced as pure JavaScript files.
Note: In both cases you must add functions to the global window object like
shown above, functions written as:
--------------------------------------------------------------------------------
function hello2() {
alert("Hello world");
}
--------------------------------------------------------------------------------
are only available within the scope of the script.
The _.xulmusrc_ file in your home directory and any files in
_$$~/.xulmus/plugin/$$_ are always sourced at startup. $$~$$ is supported as a
shortcut for the _$HOME_ directory. If [!] is specified, errors are not
printed.
________________________________________________________________________________
|:lpl| |:loadplugins|
||:loadplugins|| +
________________________________________________________________________________
Load all unloaded plugins immediately. Because plugins are automatically
loaded after xulmusrc is sourced, this command must be placed early
in the xulmusrc file if xulmusrc also includes commands that are
implemented by plugins. Additionally, this command allows for sourcing
new plugins without restarting Xulmus.
________________________________________________________________________________
|:ru| |:runtime|
||:runt[ime][!] {file} ...|| +
________________________________________________________________________________
Source the specified file from each directory in 'runtimepath'. Example: +
[c]:runtime plugin/foobar.vimp[c] +
Only the first found file is sourced. When [!] is given, all found files are
sourced.
________________________________________________________________________________
|:scrip| |:scriptnames|
||:scrip[tnames]|| +
________________________________________________________________________________
List all sourced script names, in the order they were first sourced.
________________________________________________________________________________
|:fini| |:finish|
||:fini[sh]|| +
________________________________________________________________________________
Stop sourcing a script file. This can only be called from within a Xulmus
script file.
________________________________________________________________________________
section::Profiling[profile,profiling]
|:time|
||:[count]time[!] {code|:command}|| +
________________________________________________________________________________
Profile a piece of code or a command. Run {code} [count] times (default: 1)
and returns the elapsed time. {code} is always passed to JavaScript's eval(),
which might be slow, so take the results with a grain of salt.
If {code} starts with a [c]:[c], it is executed as a Xulmus command.
Use the special version with [!] if you just want to run any command multiple
times without showing profiling statistics.
________________________________________________________________________________
// vim: set filetype=asciidoc:

View File

@@ -1,105 +0,0 @@
heading::Starting{nbsp}Xulmus[starting]
|startup-options| +
Command-line options can be passed to Xulmus via the -xulmus Songbird
option. These are passed as single string argument.
E.g songbird -xulmus "$$++cmd 'set exrc' +u 'tempRcFile' ++noplugin$$"
|+c| +
||+c {command}||
________________________________________________________________________________
Execute a single Ex command after all initialization has been performed. See
[j]initialization[j].
This option can be specified multiple times.
________________________________________________________________________________
|$$++cmd$$| +
||$$++cmd {command}$$||
________________________________________________________________________________
Execute a single Ex command before any initialization has been performed. See
[j]initialization[j].
This option can be specified multiple times.
________________________________________________________________________________
|+u| +
||+u {rcfile}||
________________________________________________________________________________
The file {rcfile} is used for user initialization commands. If {rcfile} is
"NORC" then no startup initialization is performed except for the loading of
plugins, i.e. steps 1. and 2. in [j]initialization[j] are skipped. If {rcfile}
is "NONE" then plugin loading is also skipped.
________________________________________________________________________________
|$$++noplugin$$| +
||$$++noplugin$$||
________________________________________________________________________________
Prevents plugin scripts from being loaded at startup. See 'loadplugins'.
________________________________________________________________________________
section::Initialization[initialization,startup]
At startup, Xulmus completes the following tasks in order.
1. Xulmus can perform user initialization commands. When
one of the following is successfully located, it is executed, and no
further locations are tried.
a. |$XULMUS_INIT|
_$XULMUS_INIT_ -- May contain a single Ex command (e.g.,
"[c]:source {file}[c]").
b. _$$~/_xulmusrc$$_ -- Windows only. If this file exists, its contents
are executed and _$MY_XULMUSRC_ set to its path.
c. _$$~/.xulmusrc$$_ -- If this file exists, its contents are executed.
2. If 'exrc' is set and the +u command-line option was not specified, then any
RC file in the current directory is also sourced.
3. All directories in 'runtimepath' are searched for a "plugin"
subdirectory and all yet unloaded plugins are loaded. For each
plugin directory, all *.\{js,xulmus} files (including those in further
subdirectories) are sourced alphabetically. No plugins will be sourced
if:
* 'noloadplugins' is set.
* the $$++noplugin$$ command-line option was specified.
* the +u=NONE command-line option specified set.
Any particular plugin will not be loaded if it has already been loaded (e.g.,
by an earlier [c]:loadplugins[c] command).
The user's ~ (i.e., "home") directory is determined as follows:
* On Unix and Mac, the environment variable _$HOME_ is used.
* On Windows, Xulmus checks for the existence of _%HOME%_, then
_%USERPROFILE%_, and then _%HOMEDRIVE%%HOMEPATH%_. It uses the first one
it finds.
section::Saving{nbsp}settings[save-settings]
|:mkx| |:mkxulmusrc|
||:mkx[ulmusrc][!] [a][file][a]|| +
________________________________________________________________________________
Write current key mappings and changed options to [a][file][a]. If no
[a][file][a] is specified then _~/.xulmusrc_ is written unless this file
already exists. The special version [c]:mkxulmusrc![c] will overwrite
[a][file][a] if it exists.
Warning: this differs from Vim's behavior which defaults to writing the file
in the current directory.
________________________________________________________________________________
section::Restarting[restarting]
|:res| |:restart| +
||:res[tart]||
________________________________________________________________________________
Force Xulmus to restart. Useful when installing extensions.
________________________________________________________________________________
// vim: set filetype=asciidoc:

View File

@@ -1,136 +0,0 @@
heading::Styling{nbsp}the{nbsp}GUI{nbsp}and{nbsp}web{nbsp}pages[styling]
Xulmus allows you to style both the player and any web pages you view. All
styling is specified via CSS. Although you may style any user interface element
via the [c]:style[c] command, most Xulmus elements can be styled with the
[c]:highlight[c] command, for convenience.
|E185| |:colo| |:colorscheme| +
||:colo[rscheme] {name}|| +
________________________________________________________________________________
Load a color scheme. {name} is found by searching the 'runtimepath' for the
first file matching colors/{name}.vimp.
The ColorScheme autocommand is triggered after the color scheme has been
sourced.
________________________________________________________________________________
|:hi| |:highlight| +
||:hi[ghlight][!] [-append] {group} [[{selector}] {css}]|| +
________________________________________________________________________________
Highlight {group} with {css}. {css} is one or more comma separated CSS
declarations (E.g. *color: blue; background-color: red*). Normally, {css} is
checked for valid syntax before it's applied. Once you're certain it's valid,
[!] can be used to skip the check to speed up Xulmus startup. {selector}
can be any valid CSS selector, such as [c]:hover[c], and, if provided, will
restrict the match to matching elements.
Valid groups are:
[frame="topbot",grid="none",cols="1,4"]
|===============================================================================
|*Bell* |Xulmus's visual bell
|*Boolean* |A JavaScript Boolean object
|*CmdLine* |The command line
|*CmdOutput* |
|*CompDesc* |The description column of the completion list
|*CompGroup* |
|*CompIcon* |The favicon of a completion row
|*CompItem* |A row of completion list
|*CompItem[selected]*|A selected row of completion list
|*CompLess* |The indicator shown when completions may be scrolled up
|*CompLess::after* |The character of indicator shown when completions may be scrolled up
|*CompMore* |The indicator shown when completions may be scrolled down
|*CompMore::after* |The character of indicator shown when completions may be scrolled down
|*CompMsg* |
|*CompResult* |The result column of the completion list
|*CompTitle* |Completion row titles
|*ErrorMsg* |Error messages
|*Filter* |The matching text in a completion list
|*FrameIndicator* |The indicator shown when a new frame is selected
|*Function* |A JavaScript Function object
|*Gradient* |
|*GradientLeft* |
|*GradientRight* |
|*Hint* |A hint indicator. See [c]:help hints[c]
|*HintActive* |The hint element of link which will be followed by <Enter>
|*HintElem* |The hintable element
|*HintImage* |The indicator which floats above hinted images
|*Indicator* |
|*InfoMsg* |Information messages
|*Keyword* |A bookmark keyword for a URL
|*LineNr* |The line number of an error
|*Message* |
|*ModeMsg* |The mode indicator in the command line
|*MoreMsg* |The indicator that there is more text to view
|*NonText* |
|*Normal* |Normal text in the command line
|*Null* |A JavaScript Null object
|*Number* |A JavaScript Number object
|*Object* |A JavaScript Object
|*Preview* |
|*Question* |A prompt for a decision
|*Search* |Highlighted search results in a web page
|*StatusLine* |The status bar
|*StatusLineBroken* |The status bar for a broken web page
|*StatusLineSecure* |The status bar for a secure web page
|*StatusLineExtended*|The status bar for a secure web page with an Extended Validation(EV) certificate
|*String* |A JavaScript String object
|*TabClose* |The close button of a browser tab
|*TabIcon* |The icon of a browser tab
|*TabIconNumber* |The number of a browser tab, over its icon
|*TabNumber* |The number of a browser tab, next to its icon
|*TabText* |The text of a browser tab
|*Tag* |A bookmark tag for a URL
|*Title* |The title of a listing, including [c]:pageinfo[c], [c]:jumps[c]
|*URL* |A URL
|*WarningMsg* |A warning message
|===============================================================================
Every invocation completely replaces the styling of any previous invocation,
unless *-append* (short option: *-a*) is provided, in which case {css} is
appended to its current value. If {css} is not provided, any styles matching
{group} are listed, or all styles if no {group} provided.
________________________________________________________________________________
|:highlight-clear| +
||:hi[ghlight] clear [{group} [{selector}]]|| +
________________________________________________________________________________
Reset the highlighting for {group} to its default value. If
{group} is not given, reset all highlighting groups.
________________________________________________________________________________
|:sty| |:style| +
||:sty[le][!] [-name={name}] [-append] {filter} [{css}]|| +
________________________________________________________________________________
Add CSS styles to the browser or to web pages. {filter} is a comma separated
list of URLs to match. URLs ending with *** are matched as prefixes, URLs not
containing any *:* or */* characters are matched as domains. {css} is a full
CSS rule set (E.g. *body { color: blue; }*).
If {name} (short option: *-n*) is provided, any existing style with the same
name is overridden, and the style may later be deleted using {name}. If
*-append* (short option: *-a*) is provided along with *-name*, {css} and
{filter} are appended to its current value.
If {css} isn't provided, matching styles are listed.
________________________________________________________________________________
|:dels| |:delstyle| +
||:dels[tyle] [-name={name}] [-index={index}] [{filter}] [{css}]|| +
________________________________________________________________________________
Delete any matching styles. If {filter} is provided, only matching elements of
the filter are disabled. For instance, a filter [a]mozilla.org[a], given a
style for [a]www.google.com,mozilla.org[a], will result in a style for
[a]www.google.com[a]. The available options are:
* *-name*: The name provided to [c]:style[c] (short option: *-n*)
* *-index*: For unnamed styles, the index listed by [c]:style[c]
(short option: *-i*)
________________________________________________________________________________
// vim: set filetype=asciidoc:

View File

@@ -1,260 +0,0 @@
heading::Tabs[tabs]
Tabs are used to be able to view many web pages at the same time. Each tab
contains exactly one buffer -- multiple buffers per tab are not supported. As a
result many buffer and tab commands are interchangeable.
section::Listing{nbsp}tabs[listing-tabs]
|B| |:tabs| |:ls| |:files| |:buffers|
||:buffers [a][filter][a]|| +
||B||
________________________________________________________________________________
Show a list of buffers (=tabs) matching [a][filter][a]. Without [a][filter][a]
list all tabs.
A buffer may be marked with one of the following indicators:
[frame="topbot",grid="none",cols="1,10"]
|===============================================================================
|*%*|The current buffer
|*#*|The alternate buffer for [c]:e #[c] and [m]<C-^>[m]
|===============================================================================
________________________________________________________________________________
|:keepa| |:keepalt| +
||:keepa[lt] {cmd}||
________________________________________________________________________________
Execute a command without changing the current alternate buffer.
________________________________________________________________________________
section::Opening{nbsp}tabs[opening-tabs]
|:tab| +
||:tab {cmd}||
________________________________________________________________________________
Execute {cmd} and tell it to output in a new tab. Works only for commands that
support it, currently:
* [c]:tab addons[c]
* [c]:tab downloads[c]
* [c]:tab extoptions[c]
* [c]:tab help[c]
* [c]:tab javascript![c]
* [c]:tab preferences![c]
________________________________________________________________________________
|:tabdu| |:tabduplicate|
||:[count]tabdu[plicate]|| +
________________________________________________________________________________
Duplicate the current tab and switch to the duplicate. If [count] is given,
duplicate the tab [count] times.
________________________________________________________________________________
//TODO: should the tab commands be moved back here?
See [j]opening[j] for other ways to open new tabs.
section::Changing{nbsp}tabs[changing-tabs]
|gb| +
||[count]gb||
________________________________________________________________________________
Repeat last [c]:buffer[!][c] command. This is useful to quickly jump between
buffers which have a similar URL or title.
________________________________________________________________________________
|gB| +
||[count]gB||
________________________________________________________________________________
Repeat last [c]:buffer[!][c] command in reverse direction. Just like [m]gb[m]
but in the other direction.
________________________________________________________________________________
|gt| +
||[count]gt||
________________________________________________________________________________
Go to the next tab. Cycles to the first tab when the last is selected. +
If [count] is specified go to the [count]th tab.
________________________________________________________________________________
|<C-PageDown>| |<C-Tab>| |<C-n>| +
||[count]<C-n>||
________________________________________________________________________________
Go to the next tab. Cycles to the first tab when the last is selected. +
If [count] is specified go to the [count]th next tab.
________________________________________________________________________________
|<C-PageUp>| |<C-S-Tab>| |<C-p>| |gT| +
||[count]gT||
________________________________________________________________________________
Go to the previous tab. Cycles to the last tab when the first is selected. +
If [count] is specified go to the [count]th previous tab.
________________________________________________________________________________
|:bn| |:bnext| |:tn| |:tnext| |:tabn| |:tabnext|
||:[count]tabn[ext] [count]|| +
||:[count]tn[ext] [count]|| +
||:[count]bn[ext] [count]|| +
________________________________________________________________________________
Switch to the next or [count]th tab. Cycles to the first tab when the last is
selected and [count] is not specified.
________________________________________________________________________________
|:bN| |:bNext| |:bp| |:bprevious| |:tN| |:tNext| |:tabN| |:tabNext| |:tp| |:tprevious| |:tabp| |:tabprevious| +
||:[count]tabp[revious] [count]|| +
||:[count]tp[revious] [count]|| +
||:[count]tabN[ext] [count]|| +
||:[count]bp[revious] [count]|| +
||:[count]bN[ext] [count]|| +
________________________________________________________________________________
Switch to the previous tab or go [count] tabs back. Wraps around from the
first tab to the last tab.
________________________________________________________________________________
|<C-6>| |<C-^>| +
||[count]<C-^>||
________________________________________________________________________________
Select the previously selected tab. This provides a quick method of toggling
between two tabs. If [count] is specified, go to the [count]th tab.
________________________________________________________________________________
|b| |:b| |:buffer|
||:[count]b[uffer][!] [a][url|index][a]|| +
||[count]b||
________________________________________________________________________________
Go to the specified buffer from the buffer list. Argument can be either the
buffer index or the full URL. If [count] is given, go to the [count]th buffer.
If argument is neither a full URL nor an index but uniquely identifies a
buffer, it is selected. With [!] the next buffer matching the argument is
selected, even if it cannot be identified uniquely. Use [m]b[m] as a
shortcut to open this prompt.
If argument is [a]#[a], the alternate buffer will be selected (see [m]<C-^>[m]).
If no argument is given the current buffer remains current.
________________________________________________________________________________
|g^| |g0| |:bf| |:bfirst| |:br| |:brewind| |:tabfir| |:tabfirst| |:tabr| |:tabrewind|
||:tabr[ewind]|| +
||:tabfir[st]|| +
||:br[ewind]|| +
||:bf[irst]|| +
||g0|| +
||g^||
________________________________________________________________________________
Switch to the first tab.
________________________________________________________________________________
|g$| |:bl| |:blast| |:tabl| |:tablast|
||:tabl[ast]|| +
||:bl[ast]|| +
||g$||
________________________________________________________________________________
Switch to the last tab.
________________________________________________________________________________
|:tabde| |:tabdetach| +
||:tabde[tach]||
________________________________________________________________________________
Detach the current tab, and open it in its own window. As each window must
contain at least one tab it is not possible to detach the only tab in a window.
Use [c]:tabduplicate[c] to copy the tab then call [c]:tabdetach[c].
________________________________________________________________________________
|:taba| |:tabattach|
||:taba[ttach] {window-index} [tab-index]|| +
________________________________________________________________________________
Attach the current tab to another window. {window-index} is an index into the
list of open windows and [a][tab-index][a] is the index at which to insert the
tab in the other window's tab list. If this is the last tab in a window, the
window will be closed.
________________________________________________________________________________
section::Reordering{nbsp}tabs[reordering-tabs]
|:tabm| |:tabmove|
||:tabm[ove] [a][N][a]|| +
||:tabm[ove][!] [a]+N[a] | [a]-N[a]|| +
________________________________________________________________________________
Move the current tab to a position after tab [a]N[a]. When [a]N[a] is 0, the
current tab is made the first one. Without [a]N[a] the current tab is made the
last one. [a]N[a] can also be prefixed with "+" or "-" to indicate a relative
movement. If [!] is specified the movement wraps around the start or end of the
tab list.
________________________________________________________________________________
section::Closing{nbsp}tabs[closing-tabs]
|d| |:tabc| |:tabclose| |:bun| |:bunload| |:bw| |:bwipeout| |:bd| |:bdelete|
||:[count]bd[elete][!] [a][arg][a]|| +
||[count]d||
________________________________________________________________________________
Delete current buffer (=tab). If [count] is specified then [count] tabs are
removed. Afterwards, the tab to the right of the deleted tab(s) is selected.
When used with [a][arg][a], remove all tabs which contain [a][arg][a] in the
hostname. [!] forces this command to also search for [a][arg][a] in the full
URL and also the title of the tab. Use with care.
________________________________________________________________________________
|D|
||[count]D||
________________________________________________________________________________
Like [m]d[m] but selects the tab to the left of the deleted tab.
________________________________________________________________________________
|:tabo| |:tabonly|
||:tabo[nly]||
________________________________________________________________________________
Close all other tabs.
________________________________________________________________________________
// FIXME: No undo in Songbird for now.
//|u| |:u| |:undo|
//||:[count]u[ndo] [a][url][a]|| +
//||[count]u||
//________________________________________________________________________________
//Undo closing of a tab. If a count is given, don't undo the last but the
//[count]th last closed tab. With [a][url][a] restores the tab matching the URL.
//________________________________________________________________________________
//
//
//|:undoa| |:undoall| +
//||:undoa[ll]||
//________________________________________________________________________________
//Undo closing of all closed tabs. Songbird stores up to 10 closed tabs, even
//after a browser restart.
//________________________________________________________________________________
section::Looping{nbsp}over{nbsp}tabs[looping-over-tabs]
|:tabd| |:tabdo| |:bufd| |:bufdo| +
||:tabd[o] {cmd}||
________________________________________________________________________________
Execute {cmd} in each tab. {cmd} is executed in each tab starting with the
first and ending with the last which becomes the current tab.
{cmd} should not alter the tab list state by adding, removing or reordering
tabs.
________________________________________________________________________________
// vim: set filetype=asciidoc:

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="chrome://liberator/content/help.xsl"?>
<!DOCTYPE overlay SYSTEM "chrome://liberator/content/liberator.dtd">
<overlay
xmlns="http://vimperator.org/namespaces/liberator"
xmlns:html="http://www.w3.org/1999/xhtml">
<span replace=":window"/>
<span replace=":u"/>
<span replace=":undoa"/>
</overlay>
<!-- vim:se sts=4 sw=4 et: -->

View File

@@ -1,146 +0,0 @@
heading::Other{nbsp}help[]
section::Various{nbsp}commands[various]
|:beep| +
||:beep||
________________________________________________________________________________
Play a system beep.
________________________________________________________________________________
|<C-l>| |CTRL-L| |:redr| |:redraw| +
||:redr[aw]||
________________________________________________________________________________
Redraws the screen. Useful to update the screen halfway executing a script or function.
________________________________________________________________________________
|:norm| |:normal|
||:norm[al][!] {commands}|| +
________________________________________________________________________________
Execute Normal mode commands {commands}. This makes it possible to execute
Normal mode commands typed on the command line. {commands} is executed like it
is typed. If the [!] is given, mappings will not be used. {commands} should be
a complete command. {commands} cannot start with a space. Put 1 space before
it, 1 space is one space.
________________________________________________________________________________
|:run| |:!| |:!cmd| +
||:!{cmd}||
________________________________________________________________________________
Run a command. Runs {cmd} through system() and displays its output. Any \'!' in
{cmd} is replaced with the previous external command, but not when there is a
backslash before the \'!', then the backslash is removed.
Warning: Input redirection (< foo) not done, also do not run commands which
require stdin or it will hang Songbird! It is possible to launch background
processes, though (e.g. [c]:! xterm &[c]).
________________________________________________________________________________
|:!!| +
||:!!||
________________________________________________________________________________
Repeat last [c]:!{cmd}[c].
________________________________________________________________________________
|:sil| |:silent|
||:sil[ent] {command}|| +
________________________________________________________________________________
Execute a command silently. Normal messages and error messages generated by the
command invocation will not be given and will not be added to the message
history.
________________________________________________________________________________
|:verb| |:verbose|
||:[count]verb[ose] {command}|| +
________________________________________________________________________________
Execute a command with 'verbose' set to [count]. If [count] is not specified
then 1 is used as the value.
________________________________________________________________________________
|:ve| |:version| +
||:ve[rsion][!]||
________________________________________________________________________________
Show version information. You can show the Songbird version page with
[c]:version![c].
________________________________________________________________________________
section::Online{nbsp}help[online-help]
|<F1>| |:help| |:h| |help|
||:h[elp] [a][subject][a]|| +
||<F1>||
________________________________________________________________________________
Open the help page. The default page, as specified by 'helpfile' is shown
unless [a][subject][a] is specified. If you need help for a specific topic, try
[c]:help overview[c].
________________________________________________________________________________
|:helpall| |:helpa| |help-all|
||:helpa[ll] [a][subject][a]|| +
________________________________________________________________________________
Open the single unchunked help page.
See [c]:help[c].
________________________________________________________________________________
|:exu| |:exusage| +
||:exu[sage][!]||
________________________________________________________________________________
Show help on Ex commands. If [!] is given then the help is listed in the
command output window.
________________________________________________________________________________
|:optionu| |:optionusage|
||:optionu[sage][!]|| +
________________________________________________________________________________
Show help on options. If [!] is given then the help is listed in the command
output window.
________________________________________________________________________________
|:viu| |:viusage| +
||:viu[sage][!]||
________________________________________________________________________________
Show help on Normal mode commands. If [!] is given then the help is listed in
the command output window.
________________________________________________________________________________
|42| +
What is the meaning of life, the universe and everything?
Douglas Adams, the only person who knew what this question really was about is
now dead, unfortunately. So now you might wonder what the meaning of death
is...
section::Uncategorized{nbsp}help[uncategorized]
|<C-[>| |<Esc>| +
||<Esc>||
________________________________________________________________________________
Focus content. Exits Command-line or Hints mode and returns to Normal
mode. Also focuses the web page in case a form field has focus and eats
our key presses.
________________________________________________________________________________
|<Insert>| |i| +
||i||
________________________________________________________________________________
Start caret mode. This mode resembles the Vim's Normal mode where you see a
text cursor and can move around. If you want to select text in this mode, press
[m]v[m] to start its Visual mode.
________________________________________________________________________________
// vim: set filetype=asciidoc:

View File

@@ -1,360 +0,0 @@
/* TODO: this file is a total debacle. Find out exactly which version it was
* based on and extract the Vimperator required modifications to a separate
* file. It's not called "Cascading" for nothing! --djk */
/* keep the mozdev header */
/* @import url(http://www.mozdev.org/skin/color/mozdev2k.css); */
/*
CSS stylesheet for XHTML produced by DocBook XSL stylesheets.
Tested with XSL stylesheets 1.61.2, 1.67.2
*/
span.strong {
font-weight: bold;
}
a {
color: #4A708B;
text-decoration: none;
}
body blockquote {
margin-top: .75em;
line-height: 1.5;
margin-bottom: .75em;
}
html body {
/*margin: 1em 5% 1em 5%;*/
margin: auto;
padding-left: 25px;
padding-right: 25px;
line-height: 1.2;
font-family: -moz-fixed;
max-width: 800px;
}
body div {
margin: 0;
}
h1, h2, h3, h4, h5, h6,
div.toc p b,
div.list-of-figures p b,
div.list-of-tables p b,
div.abstract p.title
{
color: #527bbd;
}
div.toc p:first-child,
div.list-of-figures p:first-child,
div.list-of-tables p:first-child,
div.example p.title
{
margin-bottom: 0.1em;
}
body h1 {
margin: .0em 0 0 -4%;
line-height: 1.3;
border-bottom: 1px solid silver;
}
body h2 {
/* necessary, because we put h2 into tables */
margin-top: 20px !important;
margin-bottom: 0px !important;
line-height: 1.3;
/*border-bottom: 1px solid silver;*/
}
body h3 {
margin: .8em 0 0 -3%;
line-height: 1.3;
}
body h4 {
margin: .8em 0 0 -3%;
line-height: 1.3;
}
body h5 {
margin: .8em 0 0 -2%;
line-height: 1.3;
}
body h6 {
margin: .8em 0 0 -1%;
line-height: 1.3;
}
body hr {
border: none; /* Broken on IE6 */
}
div.footnotes hr {
border: 1px solid silver;
}
div.navheader th, div.navheader td, div.navfooter td {
font-size: 0.9em;
font-weight: bold;
color: #527bbd;
}
div.navheader img, div.navfooter img {
border-style: none;
}
div.navheader a, div.navfooter a {
font-weight: normal;
}
div.navfooter hr {
border: 1px solid silver;
}
body td {
line-height: 1.2
}
body th {
line-height: 1.2;
}
ol {
line-height: 1.2;
}
ul, body dir, body menu {
line-height: 1.2;
}
html {
margin: 0;
padding: 0;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
margin-left: 0
}
body pre {
margin: 0.5em 10% 0.5em 1em;
line-height: 1.2;
color: navy;
}
tt.literal, code.literal {
color: navy;
}
.programlisting, .screen, .listingblock {
border: 1px solid silver;
background: #f4f4f4;
margin: 0.5em 10% 0.5em 0;
padding: 0.5em 1em;
}
div.sidebar {
background: #ffffee;
margin: 1.0em 10% 0.5em 0;
padding: 0.5em 1em;
border: 1px solid silver;
}
div.sidebar * { padding: 0; }
div.sidebar div { margin: 0; }
div.sidebar p.title {
margin-top: 0.5em;
margin-bottom: 0.2em;
}
div.bibliomixed {
margin: 0.5em 5% 0.5em 1em;
}
#footer {
margin: 15px;
text-align: center;
color: gray;
}
div.glossary dt {
font-weight: bold;
}
div.glossary dd p {
margin-top: 0.2em;
}
dl {
margin: .8em 0;
line-height: 1.2;
}
dt {
margin-top: 0.5em;
}
dt span.term {
font-style: italic;
}
div.variablelist dd p {
margin-top: 0;
}
div.itemizedlist li, div.orderedlist li {
margin-left: -0.8em;
margin-top: 0.5em;
}
ul, ol {
list-style-position: outside;
}
div.sidebar ul, div.sidebar ol {
margin-left: 2.8em;
}
div.itemizedlist p.title,
div.orderedlist p.title,
div.variablelist p.title
{
margin-bottom: -0.8em;
}
div.revhistory table {
border-collapse: collapse;
border: none;
}
div.revhistory th {
border: none;
color: #527bbd;
}
div.revhistory td {
border: 1px solid silver;
}
/* Keep TOC and index lines close together. */
div.toc dl, div.toc dt,
div.list-of-figures dl, div.list-of-figures dt,
div.list-of-tables dl, div.list-of-tables dt,
div.indexdiv dl, div.indexdiv dt
{
line-height: normal;
margin-top: 0;
margin-bottom: 0;
}
/*
Table styling does not work because of overriding attributes in
generated HTML.
*/
div.table table,
div.informaltable table
{
margin-left: 0;
margin-right: 5%;
margin-bottom: 0.8em;
}
div.informaltable table
{
margin-top: 0.4em
}
div.table thead,
div.table tfoot,
div.table tbody,
div.informaltable thead,
div.informaltable tfoot,
div.informaltable tbody
{
/* No effect in IE6. */
border-top: 2px solid #527bbd;
border-bottom: 2px solid #527bbd;
}
div.table thead, div.table tfoot,
div.informaltable thead, div.informaltable tfoot
{
font-weight: bold;
}
div.mediaobject img {
border: 1px solid silver;
margin-bottom: 0.8em;
}
div.figure p.title,
div.table p.title
{
margin-top: 1em;
margin-bottom: 0.4em;
}
@media print {
div.navheader, div.navfooter { display: none; }
}
/* my additions */
span.tag, span.hiddentag {
font-weight: bold;
color: rgb(255, 0, 255); /* magenta */
padding-left: 15px;
float: right;
}
/* inside a table cell means this tag is part of a section */
td span.tag {
padding-top: 25px !important;
}
span.key {
color: rgb(255, 0, 255); /* magenta */
min-width: 120px; /* with 20px padding actually 140px */
/*padding-bottom: 5px;*/
padding-right: 20px;
float: left;
}
span.warning {
font-weight: bold;
color: red;
}
span.info {
font-weight: bold;
color: blue;
}
fieldset.paypal {
border: none;
}
.argument {
color: #6A97D4;
}
.command {
font-weight: bold;
color: #632610;
white-space: nowrap;
}
.mapping {
font-weight: bold;
color: #102663;
}
.option {
font-weight: bold;
color: #106326;
}
.option, .mapping, .command {
text-decoration: none;
}
.option:hover, .mapping:hover, .command:hover {
text-decoration: underline;
}
.quoteblock {
margin-left: 140px;
padding-bottom: 10px;
}
/* FIXME: hack to match old table formatting with new table syntax - a possibly vain attempt to stop dpb's whinging. --djk */
p.table {
margin-top: 0;
margin-bottom: 0;
}
/* vim: set fdm=marker sw=4 ts=4 et: */