mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-01 19:25:46 +01:00
Whitespace fixes.
This commit is contained in:
2
HACKING
2
HACKING
@@ -138,7 +138,7 @@ We try to be quite consistent, but of course, that's not always possible.
|
|||||||
constructor of a class, with CamelCase only you just ASSUME you do.
|
constructor of a class, with CamelCase only you just ASSUME you do.
|
||||||
I am all about making code clearer also to new developers. And this
|
I am all about making code clearer also to new developers. And this
|
||||||
includes getting rid of as many assumptions as possible, by making
|
includes getting rid of as many assumptions as possible, by making
|
||||||
things explicit, when they don't hurt readability (and new doesn't
|
things explicit, when they don't hurt readability (and new doesn't
|
||||||
for me). It's not so important, that i'll change all instances to
|
for me). It's not so important, that i'll change all instances to
|
||||||
new immediately, but will probably do so over time, when I see it.
|
new immediately, but will probably do so over time, when I see it.
|
||||||
--mst
|
--mst
|
||||||
|
|||||||
@@ -95,7 +95,7 @@ usage you'll see herein:
|
|||||||
</foo>
|
</foo>
|
||||||
|
|
||||||
// Adding a quux attribute to the root
|
// Adding a quux attribute to the root
|
||||||
> xml.@quux = "foo"
|
> xml.@quux = "foo"
|
||||||
foo
|
foo
|
||||||
> xml
|
> xml
|
||||||
<foo bar="baz" baz="qux" quux="foo">
|
<foo bar="baz" baz="qux" quux="foo">
|
||||||
|
|||||||
@@ -1075,7 +1075,7 @@ lookup:
|
|||||||
* <b>fn</b> is called with a temp file, created with
|
* <b>fn</b> is called with a temp file, created with
|
||||||
* {@link #createTempFile}, for each explicit argument. Ensures that
|
* {@link #createTempFile}, for each explicit argument. Ensures that
|
||||||
* all files are removed when <b>fn</b> returns.
|
* all files are removed when <b>fn</b> returns.
|
||||||
*
|
*
|
||||||
* @param {function} fn The function to execute.
|
* @param {function} fn The function to execute.
|
||||||
* @param {Object} self The 'this' object used when executing fn.
|
* @param {Object} self The 'this' object used when executing fn.
|
||||||
* @return {boolean} false if temp files couldn't be created,
|
* @return {boolean} false if temp files couldn't be created,
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ the terms of any one of the MPL, the GPL or the LGPL.
|
|||||||
<key id="key_open_vimbar" key=":" oncommand="liberator.modules.commandline.open(':', '', liberator.modules.modes.EX);" modifiers=""/>
|
<key id="key_open_vimbar" key=":" oncommand="liberator.modules.commandline.open(':', '', liberator.modules.modes.EX);" modifiers=""/>
|
||||||
<key id="key_stop" keycode="VK_ESCAPE" oncommand="liberator.modules.events.onEscape();"/>
|
<key id="key_stop" keycode="VK_ESCAPE" oncommand="liberator.modules.events.onEscape();"/>
|
||||||
<!-- other keys are handled inside the event loop in events.js -->
|
<!-- other keys are handled inside the event loop in events.js -->
|
||||||
</keyset>
|
</keyset>
|
||||||
|
|
||||||
<popupset>
|
<popupset>
|
||||||
<panel id="liberator-visualbell" liberator:highlight="Bell"/>
|
<panel id="liberator-visualbell" liberator:highlight="Bell"/>
|
||||||
|
|||||||
@@ -3,14 +3,14 @@
|
|||||||
" Maintainer: Yi Zhao (ZHAOYI) <zzlinux AT hotmail DOT com>
|
" Maintainer: Yi Zhao (ZHAOYI) <zzlinux AT hotmail DOT com>
|
||||||
" Last Change: May 17, 2007
|
" Last Change: May 17, 2007
|
||||||
" Version: 0.7.5
|
" Version: 0.7.5
|
||||||
" Changes: 1, Get the vimdiff problem fixed finally.
|
" Changes: 1, Get the vimdiff problem fixed finally.
|
||||||
" Matthew Gallant reported the problem and test the fix. ;)
|
" Matthew Gallant reported the problem and test the fix. ;)
|
||||||
" 2, Follow the suggestioin from Ingo Karkat.
|
" 2, Follow the suggestioin from Ingo Karkat.
|
||||||
" The 'foldtext' and 'foldlevel' settings should only be
|
" The 'foldtext' and 'foldlevel' settings should only be
|
||||||
" changed if the file being edited is pure JavaScript,
|
" changed if the file being edited is pure JavaScript,
|
||||||
" not if JavaScript syntax is embedded inside other syntaxes.
|
" not if JavaScript syntax is embedded inside other syntaxes.
|
||||||
" 3, Remove function FT_JavaScriptDoc().
|
" 3, Remove function FT_JavaScriptDoc().
|
||||||
" Since VIM do the better than me.
|
" Since VIM do the better than me.
|
||||||
"
|
"
|
||||||
" TODO:
|
" TODO:
|
||||||
" - Add the HTML syntax inside the JSDoc
|
" - Add the HTML syntax inside the JSDoc
|
||||||
@@ -152,7 +152,7 @@ endif "DOM/HTML/CSS
|
|||||||
syntax cluster javaScriptAll contains=javaScriptComment,javaScriptLineComment,javaScriptDocComment,javaScriptStringD,javaScriptStringS,javaScriptRegexpString,javaScriptNumber,javaScriptFloat,javaScriptLabel,javaScriptSource,javaScriptType,javaScriptOperator,javaScriptBoolean,javaScriptNull,javaScriptFunction,javaScriptConditional,javaScriptRepeat,javaScriptBranch,javaScriptStatement,javaScriptGlobalObjects,javaScriptExceptions,javaScriptFutureKeys,javaScriptDomErrNo,javaScriptDomNodeConsts,javaScriptHtmlEvents,javaScriptDotNotation,javascriptE4X,javascriptCSS,javascriptCDATA
|
syntax cluster javaScriptAll contains=javaScriptComment,javaScriptLineComment,javaScriptDocComment,javaScriptStringD,javaScriptStringS,javaScriptRegexpString,javaScriptNumber,javaScriptFloat,javaScriptLabel,javaScriptSource,javaScriptType,javaScriptOperator,javaScriptBoolean,javaScriptNull,javaScriptFunction,javaScriptConditional,javaScriptRepeat,javaScriptBranch,javaScriptStatement,javaScriptGlobalObjects,javaScriptExceptions,javaScriptFutureKeys,javaScriptDomErrNo,javaScriptDomNodeConsts,javaScriptHtmlEvents,javaScriptDotNotation,javascriptE4X,javascriptCSS,javascriptCDATA
|
||||||
syntax region javaScriptBracket matchgroup=javaScriptBracket transparent start="\[" end="\]" contains=@javaScriptAll,javaScriptParensErrB,javaScriptParensErrC,javaScriptBracket,javaScriptParen,javaScriptBlock,@htmlPreproc
|
syntax region javaScriptBracket matchgroup=javaScriptBracket transparent start="\[" end="\]" contains=@javaScriptAll,javaScriptParensErrB,javaScriptParensErrC,javaScriptBracket,javaScriptParen,javaScriptBlock,@htmlPreproc
|
||||||
syntax region javaScriptParen matchgroup=javaScriptParen transparent start="(" end=")" contains=@javaScriptAll,javaScriptParensErrA,javaScriptParensErrC,javaScriptParen,javaScriptBracket,javaScriptBlock,@htmlPreproc
|
syntax region javaScriptParen matchgroup=javaScriptParen transparent start="(" end=")" contains=@javaScriptAll,javaScriptParensErrA,javaScriptParensErrC,javaScriptParen,javaScriptBracket,javaScriptBlock,@htmlPreproc
|
||||||
syntax region javaScriptBlock matchgroup=javaScriptBlock transparent start="{" end="}" contains=@javaScriptAll,javaScriptParensErrA,javaScriptParensErrB,javaScriptParen,javaScriptBracket,javaScriptBlock,@htmlPreproc
|
syntax region javaScriptBlock matchgroup=javaScriptBlock transparent start="{" end="}" contains=@javaScriptAll,javaScriptParensErrA,javaScriptParensErrB,javaScriptParen,javaScriptBracket,javaScriptBlock,@htmlPreproc
|
||||||
|
|
||||||
syntax region javascriptCDATA matchgroup=javascriptCDATA start="<\!\[CDATA\[" end="\]\]>" keepend contains=javascriptCSS
|
syntax region javascriptCDATA matchgroup=javascriptCDATA start="<\!\[CDATA\[" end="\]\]>" keepend contains=javascriptCSS
|
||||||
syntax region javascriptCSS matchgroup=javascriptCSSDelimiter start="<css>" end="</css>" contains=@cssTop
|
syntax region javascriptCSS matchgroup=javascriptCSSDelimiter start="<css>" end="</css>" contains=@cssTop
|
||||||
@@ -270,12 +270,12 @@ let b:did_indent = 1
|
|||||||
setlocal indentexpr=GetJsIndent()
|
setlocal indentexpr=GetJsIndent()
|
||||||
setlocal indentkeys=0{,0},0),:,!^F,O,e,=*/
|
setlocal indentkeys=0{,0},0),:,!^F,O,e,=*/
|
||||||
" Clean CR when the file is in Unix format
|
" Clean CR when the file is in Unix format
|
||||||
if &fileformat == "unix"
|
if &fileformat == "unix"
|
||||||
silent! %s/\r$//g
|
silent! %s/\r$//g
|
||||||
endif
|
endif
|
||||||
" Only define the functions once per Vim session.
|
" Only define the functions once per Vim session.
|
||||||
"if exists("*GetJsIndent")
|
"if exists("*GetJsIndent")
|
||||||
" finish
|
" finish
|
||||||
"endif
|
"endif
|
||||||
"function! GetJsIndent()
|
"function! GetJsIndent()
|
||||||
" let pnum = prevnonblank(v:lnum - 1)
|
" let pnum = prevnonblank(v:lnum - 1)
|
||||||
@@ -285,15 +285,15 @@ endif
|
|||||||
" let line = getline(v:lnum)
|
" let line = getline(v:lnum)
|
||||||
" let pline = getline(pnum)
|
" let pline = getline(pnum)
|
||||||
" let ind = indent(pnum)
|
" let ind = indent(pnum)
|
||||||
"
|
"
|
||||||
" if pline =~ '{\s*$\|[\s*$\|(\s*$'
|
" if pline =~ '{\s*$\|[\s*$\|(\s*$'
|
||||||
" let ind = ind + &sw
|
" let ind = ind + &sw
|
||||||
" endif
|
" endif
|
||||||
"
|
"
|
||||||
" if pline =~ ';\s*$' && line =~ '^\s*}'
|
" if pline =~ ';\s*$' && line =~ '^\s*}'
|
||||||
" let ind = ind - &sw
|
" let ind = ind - &sw
|
||||||
" endif
|
" endif
|
||||||
"
|
"
|
||||||
" if pline =~ '\s*]\s*$' && line =~ '^\s*),\s*$'
|
" if pline =~ '\s*]\s*$' && line =~ '^\s*),\s*$'
|
||||||
" let ind = ind - &sw
|
" let ind = ind - &sw
|
||||||
" endif
|
" endif
|
||||||
@@ -301,27 +301,27 @@ endif
|
|||||||
" if pline =~ '\s*]\s*$' && line =~ '^\s*}\s*$'
|
" if pline =~ '\s*]\s*$' && line =~ '^\s*}\s*$'
|
||||||
" let ind = ind - &sw
|
" let ind = ind - &sw
|
||||||
" endif
|
" endif
|
||||||
"
|
"
|
||||||
" if line =~ '^\s*});\s*$\|^\s*);\s*$' && pline !~ ';\s*$'
|
" if line =~ '^\s*});\s*$\|^\s*);\s*$' && pline !~ ';\s*$'
|
||||||
" let ind = ind - &sw
|
" let ind = ind - &sw
|
||||||
" endif
|
" endif
|
||||||
"
|
"
|
||||||
" if line =~ '^\s*})' && pline =~ '\s*,\s*$'
|
" if line =~ '^\s*})' && pline =~ '\s*,\s*$'
|
||||||
" let ind = ind - &sw
|
" let ind = ind - &sw
|
||||||
" endif
|
" endif
|
||||||
"
|
"
|
||||||
" if line =~ '^\s*}();\s*$' && pline =~ '^\s*}\s*$'
|
" if line =~ '^\s*}();\s*$' && pline =~ '^\s*}\s*$'
|
||||||
" let ind = ind - &sw
|
" let ind = ind - &sw
|
||||||
" endif
|
" endif
|
||||||
"
|
"
|
||||||
" if line =~ '^\s*}),\s*$'
|
" if line =~ '^\s*}),\s*$'
|
||||||
" let ind = ind - &sw
|
" let ind = ind - &sw
|
||||||
" endif
|
" endif
|
||||||
"
|
"
|
||||||
" if pline =~ '^\s*}\s*$' && line =~ '),\s*$'
|
" if pline =~ '^\s*}\s*$' && line =~ '),\s*$'
|
||||||
" let ind = ind - &sw
|
" let ind = ind - &sw
|
||||||
" endif
|
" endif
|
||||||
"
|
"
|
||||||
" if pline =~ '^\s*for\s*' && line =~ ')\s*$'
|
" if pline =~ '^\s*for\s*' && line =~ ')\s*$'
|
||||||
" let ind = ind + &sw
|
" let ind = ind + &sw
|
||||||
" endif
|
" endif
|
||||||
|
|||||||
@@ -93,7 +93,7 @@ the terms of any one of the MPL, the GPL or the LGPL.
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Applied to completion buffer, MOW, browser window */
|
/* Applied to completion buffer, MOW, browser window */
|
||||||
@-moz-document
|
@-moz-document
|
||||||
url-prefix(chrome://) {
|
url-prefix(chrome://) {
|
||||||
|
|
||||||
.liberator-container > * {
|
.liberator-container > * {
|
||||||
|
|||||||
@@ -13,11 +13,11 @@ text editor. It has similar key bindings, and you could call it a modal
|
|||||||
mail client, as key bindings differ according to which mode you are in.
|
mail client, as key bindings differ according to which mode you are in.
|
||||||
|
|
||||||
|warning| +
|
|warning| +
|
||||||
Warning:
|
Warning:
|
||||||
To provide the most authentic Vim experience, the Thunderbird menubar and toolbar were hidden. +
|
To provide the most authentic Vim experience, the Thunderbird menubar and toolbar were hidden. +
|
||||||
If you really need them, type: [c]:set guioptions+=mT[c] to get them back. +
|
If you really need them, type: [c]:set guioptions+=mT[c] to get them back. +
|
||||||
If you don't like Muttator at all, you can uninstall it by typing
|
If you don't like Muttator at all, you can uninstall it by typing
|
||||||
[c]:addons[c] and remove/disable it. +
|
[c]:addons[c] and remove/disable it. +
|
||||||
If you like it, but can't remember the shortcuts, press [m]F1[m] or
|
If you like it, but can't remember the shortcuts, press [m]F1[m] or
|
||||||
[c]:help[c] to get this help window back.
|
[c]:help[c] to get this help window back.
|
||||||
|
|
||||||
|
|||||||
@@ -1,333 +1,333 @@
|
|||||||
/*
|
/*
|
||||||
CSS stylesheet for XHTML produced by DocBook XSL stylesheets.
|
CSS stylesheet for XHTML produced by DocBook XSL stylesheets.
|
||||||
Tested with XSL stylesheets 1.61.2, 1.67.2
|
Tested with XSL stylesheets 1.61.2, 1.67.2
|
||||||
*/
|
*/
|
||||||
|
|
||||||
span.strong {
|
span.strong {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: #4A708B;
|
color: #4A708B;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
body blockquote {
|
body blockquote {
|
||||||
margin-top: .75em;
|
margin-top: .75em;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
margin-bottom: .75em;
|
margin-bottom: .75em;
|
||||||
}
|
}
|
||||||
|
|
||||||
html body {
|
html body {
|
||||||
/*margin: 1em 5% 1em 5%;*/
|
/*margin: 1em 5% 1em 5%;*/
|
||||||
margin: auto;
|
margin: auto;
|
||||||
padding-left: 25px;
|
padding-left: 25px;
|
||||||
padding-right: 25px;
|
padding-right: 25px;
|
||||||
line-height: 1.2;
|
line-height: 1.2;
|
||||||
font-family: -moz-fixed;
|
font-family: -moz-fixed;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
}
|
}
|
||||||
|
|
||||||
body div {
|
body div {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6,
|
h1, h2, h3, h4, h5, h6,
|
||||||
div.toc p b,
|
div.toc p b,
|
||||||
div.list-of-figures p b,
|
div.list-of-figures p b,
|
||||||
div.list-of-tables p b,
|
div.list-of-tables p b,
|
||||||
div.abstract p.title
|
div.abstract p.title
|
||||||
{
|
{
|
||||||
color: #527bbd;
|
color: #527bbd;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.toc p:first-child,
|
div.toc p:first-child,
|
||||||
div.list-of-figures p:first-child,
|
div.list-of-figures p:first-child,
|
||||||
div.list-of-tables p:first-child,
|
div.list-of-tables p:first-child,
|
||||||
div.example p.title
|
div.example p.title
|
||||||
{
|
{
|
||||||
margin-bottom: 0.1em;
|
margin-bottom: 0.1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
body h1 {
|
body h1 {
|
||||||
margin: .0em 0 0 -4%;
|
margin: .0em 0 0 -4%;
|
||||||
line-height: 1.3;
|
line-height: 1.3;
|
||||||
border-bottom: 1px solid silver;
|
border-bottom: 1px solid silver;
|
||||||
}
|
}
|
||||||
|
|
||||||
body h2 {
|
body h2 {
|
||||||
/* necessary, because we put h2 into tables */
|
/* necessary, because we put h2 into tables */
|
||||||
margin-top: 20px !important;
|
margin-top: 20px !important;
|
||||||
margin-bottom: 0px !important;
|
margin-bottom: 0px !important;
|
||||||
line-height: 1.3;
|
line-height: 1.3;
|
||||||
/*border-bottom: 1px solid silver;*/
|
/*border-bottom: 1px solid silver;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
body h3 {
|
body h3 {
|
||||||
margin: .8em 0 0 -3%;
|
margin: .8em 0 0 -3%;
|
||||||
line-height: 1.3;
|
line-height: 1.3;
|
||||||
}
|
}
|
||||||
|
|
||||||
body h4 {
|
body h4 {
|
||||||
margin: .8em 0 0 -3%;
|
margin: .8em 0 0 -3%;
|
||||||
line-height: 1.3;
|
line-height: 1.3;
|
||||||
}
|
}
|
||||||
|
|
||||||
body h5 {
|
body h5 {
|
||||||
margin: .8em 0 0 -2%;
|
margin: .8em 0 0 -2%;
|
||||||
line-height: 1.3;
|
line-height: 1.3;
|
||||||
}
|
}
|
||||||
|
|
||||||
body h6 {
|
body h6 {
|
||||||
margin: .8em 0 0 -1%;
|
margin: .8em 0 0 -1%;
|
||||||
line-height: 1.3;
|
line-height: 1.3;
|
||||||
}
|
}
|
||||||
|
|
||||||
body hr {
|
body hr {
|
||||||
border: none; /* Broken on IE6 */
|
border: none; /* Broken on IE6 */
|
||||||
}
|
}
|
||||||
div.footnotes hr {
|
div.footnotes hr {
|
||||||
border: 1px solid silver;
|
border: 1px solid silver;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.navheader th, div.navheader td, div.navfooter td {
|
div.navheader th, div.navheader td, div.navfooter td {
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #527bbd;
|
color: #527bbd;
|
||||||
}
|
}
|
||||||
div.navheader img, div.navfooter img {
|
div.navheader img, div.navfooter img {
|
||||||
border-style: none;
|
border-style: none;
|
||||||
}
|
}
|
||||||
div.navheader a, div.navfooter a {
|
div.navheader a, div.navfooter a {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
div.navfooter hr {
|
div.navfooter hr {
|
||||||
border: 1px solid silver;
|
border: 1px solid silver;
|
||||||
}
|
}
|
||||||
|
|
||||||
body td {
|
body td {
|
||||||
line-height: 1.2
|
line-height: 1.2
|
||||||
}
|
}
|
||||||
|
|
||||||
body th {
|
body th {
|
||||||
line-height: 1.2;
|
line-height: 1.2;
|
||||||
}
|
}
|
||||||
|
|
||||||
ol {
|
ol {
|
||||||
line-height: 1.2;
|
line-height: 1.2;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul, body dir, body menu {
|
ul, body dir, body menu {
|
||||||
line-height: 1.2;
|
line-height: 1.2;
|
||||||
}
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
body h1, body h2, body h3, body h4, body h5, body h6 {
|
body h1, body h2, body h3, body h4, body h5, body h6 {
|
||||||
margin-left: 0
|
margin-left: 0
|
||||||
}
|
}
|
||||||
|
|
||||||
body pre {
|
body pre {
|
||||||
margin: 0.5em 10% 0.5em 1em;
|
margin: 0.5em 10% 0.5em 1em;
|
||||||
line-height: 1.2;
|
line-height: 1.2;
|
||||||
color: navy;
|
color: navy;
|
||||||
}
|
}
|
||||||
|
|
||||||
tt.literal, code.literal {
|
tt.literal, code.literal {
|
||||||
color: navy;
|
color: navy;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.programlisting, .screen, .listingblock {
|
.programlisting, .screen, .listingblock {
|
||||||
border: 1px solid silver;
|
border: 1px solid silver;
|
||||||
background: #f4f4f4;
|
background: #f4f4f4;
|
||||||
margin: 0.5em 10% 0.5em 0;
|
margin: 0.5em 10% 0.5em 0;
|
||||||
padding: 0.5em 1em;
|
padding: 0.5em 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.sidebar {
|
div.sidebar {
|
||||||
background: #ffffee;
|
background: #ffffee;
|
||||||
margin: 1.0em 10% 0.5em 0;
|
margin: 1.0em 10% 0.5em 0;
|
||||||
padding: 0.5em 1em;
|
padding: 0.5em 1em;
|
||||||
border: 1px solid silver;
|
border: 1px solid silver;
|
||||||
}
|
}
|
||||||
div.sidebar * { padding: 0; }
|
div.sidebar * { padding: 0; }
|
||||||
div.sidebar div { margin: 0; }
|
div.sidebar div { margin: 0; }
|
||||||
div.sidebar p.title {
|
div.sidebar p.title {
|
||||||
margin-top: 0.5em;
|
margin-top: 0.5em;
|
||||||
margin-bottom: 0.2em;
|
margin-bottom: 0.2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.bibliomixed {
|
div.bibliomixed {
|
||||||
margin: 0.5em 5% 0.5em 1em;
|
margin: 0.5em 5% 0.5em 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
#footer {
|
#footer {
|
||||||
margin: 15px;
|
margin: 15px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: gray;
|
color: gray;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.glossary dt {
|
div.glossary dt {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
div.glossary dd p {
|
div.glossary dd p {
|
||||||
margin-top: 0.2em;
|
margin-top: 0.2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
dl {
|
dl {
|
||||||
margin: .8em 0;
|
margin: .8em 0;
|
||||||
line-height: 1.2;
|
line-height: 1.2;
|
||||||
}
|
}
|
||||||
|
|
||||||
dt {
|
dt {
|
||||||
margin-top: 0.5em;
|
margin-top: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
dt span.term {
|
dt span.term {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.variablelist dd p {
|
div.variablelist dd p {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.itemizedlist li, div.orderedlist li {
|
div.itemizedlist li, div.orderedlist li {
|
||||||
margin-left: -0.8em;
|
margin-left: -0.8em;
|
||||||
margin-top: 0.5em;
|
margin-top: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul, ol {
|
ul, ol {
|
||||||
list-style-position: outside;
|
list-style-position: outside;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.sidebar ul, div.sidebar ol {
|
div.sidebar ul, div.sidebar ol {
|
||||||
margin-left: 2.8em;
|
margin-left: 2.8em;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.itemizedlist p.title,
|
div.itemizedlist p.title,
|
||||||
div.orderedlist p.title,
|
div.orderedlist p.title,
|
||||||
div.variablelist p.title
|
div.variablelist p.title
|
||||||
{
|
{
|
||||||
margin-bottom: -0.8em;
|
margin-bottom: -0.8em;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.revhistory table {
|
div.revhistory table {
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
div.revhistory th {
|
div.revhistory th {
|
||||||
border: none;
|
border: none;
|
||||||
color: #527bbd;
|
color: #527bbd;
|
||||||
}
|
}
|
||||||
div.revhistory td {
|
div.revhistory td {
|
||||||
border: 1px solid silver;
|
border: 1px solid silver;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Keep TOC and index lines close together. */
|
/* Keep TOC and index lines close together. */
|
||||||
div.toc dl, div.toc dt,
|
div.toc dl, div.toc dt,
|
||||||
div.list-of-figures dl, div.list-of-figures dt,
|
div.list-of-figures dl, div.list-of-figures dt,
|
||||||
div.list-of-tables dl, div.list-of-tables dt,
|
div.list-of-tables dl, div.list-of-tables dt,
|
||||||
div.indexdiv dl, div.indexdiv dt
|
div.indexdiv dl, div.indexdiv dt
|
||||||
{
|
{
|
||||||
line-height: normal;
|
line-height: normal;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Table styling does not work because of overriding attributes in
|
Table styling does not work because of overriding attributes in
|
||||||
generated HTML.
|
generated HTML.
|
||||||
*/
|
*/
|
||||||
div.table table,
|
div.table table,
|
||||||
div.informaltable table
|
div.informaltable table
|
||||||
{
|
{
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
margin-right: 5%;
|
margin-right: 5%;
|
||||||
margin-bottom: 0.8em;
|
margin-bottom: 0.8em;
|
||||||
}
|
}
|
||||||
div.informaltable table
|
div.informaltable table
|
||||||
{
|
{
|
||||||
margin-top: 0.4em
|
margin-top: 0.4em
|
||||||
}
|
}
|
||||||
div.table thead,
|
div.table thead,
|
||||||
div.table tfoot,
|
div.table tfoot,
|
||||||
div.table tbody,
|
div.table tbody,
|
||||||
div.informaltable thead,
|
div.informaltable thead,
|
||||||
div.informaltable tfoot,
|
div.informaltable tfoot,
|
||||||
div.informaltable tbody
|
div.informaltable tbody
|
||||||
{
|
{
|
||||||
/* No effect in IE6. */
|
/* No effect in IE6. */
|
||||||
border-top: 2px solid #527bbd;
|
border-top: 2px solid #527bbd;
|
||||||
border-bottom: 2px solid #527bbd;
|
border-bottom: 2px solid #527bbd;
|
||||||
}
|
}
|
||||||
div.table thead, div.table tfoot,
|
div.table thead, div.table tfoot,
|
||||||
div.informaltable thead, div.informaltable tfoot
|
div.informaltable thead, div.informaltable tfoot
|
||||||
{
|
{
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.mediaobject img {
|
div.mediaobject img {
|
||||||
border: 1px solid silver;
|
border: 1px solid silver;
|
||||||
margin-bottom: 0.8em;
|
margin-bottom: 0.8em;
|
||||||
}
|
}
|
||||||
div.figure p.title,
|
div.figure p.title,
|
||||||
div.table p.title
|
div.table p.title
|
||||||
{
|
{
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
margin-bottom: 0.4em;
|
margin-bottom: 0.4em;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media print {
|
@media print {
|
||||||
div.navheader, div.navfooter { display: none; }
|
div.navheader, div.navfooter { display: none; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/* my additions */
|
/* my additions */
|
||||||
span.tag, span.hiddentag {
|
span.tag, span.hiddentag {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: rgb(255, 0, 255); /* magenta */
|
color: rgb(255, 0, 255); /* magenta */
|
||||||
padding-left: 15px;
|
padding-left: 15px;
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
/* inside a table cell means this tag is part of a section */
|
/* inside a table cell means this tag is part of a section */
|
||||||
td span.tag {
|
td span.tag {
|
||||||
padding-top: 25px !important;
|
padding-top: 25px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.key {
|
div.key {
|
||||||
color: rgb(255, 0, 255); /* magenta */
|
color: rgb(255, 0, 255); /* magenta */
|
||||||
min-width: 120px; /* with 20px padding actually 140px */
|
min-width: 120px; /* with 20px padding actually 140px */
|
||||||
/*padding-bottom: 5px;*/
|
/*padding-bottom: 5px;*/
|
||||||
padding-right: 20px;
|
padding-right: 20px;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
span.warning {
|
span.warning {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: red;
|
color: red;
|
||||||
}
|
}
|
||||||
fieldset.paypal {
|
fieldset.paypal {
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.argument {
|
.argument {
|
||||||
color: #6A97D4;
|
color: #6A97D4;
|
||||||
}
|
}
|
||||||
.command {
|
.command {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #632610;
|
color: #632610;
|
||||||
}
|
}
|
||||||
.mapping {
|
.mapping {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #102663;
|
color: #102663;
|
||||||
}
|
}
|
||||||
.option {
|
.option {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #106326;
|
color: #106326;
|
||||||
}
|
}
|
||||||
.quoteblock {
|
.quoteblock {
|
||||||
margin-left: 140px;
|
margin-left: 140px;
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Developers:
|
|||||||
Inactive/former developers:
|
Inactive/former developers:
|
||||||
* Viktor Kojouharov (Виктор Кожухаров)
|
* Viktor Kojouharov (Виктор Кожухаров)
|
||||||
* Marco Candrian (mac@calmar.ws)
|
* Marco Candrian (mac@calmar.ws)
|
||||||
|
|
||||||
Patches (in no special order):
|
Patches (in no special order):
|
||||||
* Ruud Grosmann ('followhints' option)
|
* Ruud Grosmann ('followhints' option)
|
||||||
* Xie&Tian (multibyte support for hints)
|
* Xie&Tian (multibyte support for hints)
|
||||||
|
|||||||
@@ -11,10 +11,10 @@
|
|||||||
* Mats Vestin
|
* Mats Vestin
|
||||||
* Berni Joss
|
* Berni Joss
|
||||||
* Peter Rufer
|
* Peter Rufer
|
||||||
* Yann Le Du
|
* Yann Le Du
|
||||||
* Wilson Bilkovich
|
* Wilson Bilkovich
|
||||||
* Galen Taylor
|
* Galen Taylor
|
||||||
* Ben Hoffstein
|
* Ben Hoffstein
|
||||||
* Luc St-Louis
|
* Luc St-Louis
|
||||||
* Robert Meerman
|
* Robert Meerman
|
||||||
* Silvio Di Stefano
|
* Silvio Di Stefano
|
||||||
@@ -29,8 +29,8 @@
|
|||||||
* Ryan McBride
|
* Ryan McBride
|
||||||
* Brian Clark
|
* Brian Clark
|
||||||
* Gavin Gilmour
|
* Gavin Gilmour
|
||||||
* Sivaraj Doddannan
|
* Sivaraj Doddannan
|
||||||
* Michael Hrabanek
|
* Michael Hrabanek
|
||||||
* Nigel McNie
|
* Nigel McNie
|
||||||
* Ben Damm
|
* Ben Damm
|
||||||
* Anton Kovalenko
|
* Anton Kovalenko
|
||||||
@@ -47,7 +47,7 @@
|
|||||||
* Ted Pavlic
|
* Ted Pavlic
|
||||||
* Jacqueline Wegscheid
|
* Jacqueline Wegscheid
|
||||||
* Kashyap Paidimarri
|
* Kashyap Paidimarri
|
||||||
* Gabriel Gellner
|
* Gabriel Gellner
|
||||||
* Marco Candrian
|
* Marco Candrian
|
||||||
* Ovidiu Curcan
|
* Ovidiu Curcan
|
||||||
* Ivo-Jose Jimenez-Ramos (2x)
|
* Ivo-Jose Jimenez-Ramos (2x)
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ BUGS:
|
|||||||
(recent CVS regressions):
|
(recent CVS regressions):
|
||||||
- :set noflashblock seems broken (= :set fb? afterwards says "fb"), let's see if that's a
|
- :set noflashblock seems broken (= :set fb? afterwards says "fb"), let's see if that's a
|
||||||
plugin or a vimp issue.
|
plugin or a vimp issue.
|
||||||
- completions does not beep anymore when none are available, try :jljlkjlkj<tab>
|
- completions does not beep anymore when none are available, try :jljlkjlkj<tab>
|
||||||
- visual caret mode is broken, requires a manual page focus first anyway or
|
- visual caret mode is broken, requires a manual page focus first anyway or
|
||||||
else it chucks, I haven't investigated --djk
|
else it chucks, I haven't investigated --djk
|
||||||
- messages is still broken in several ways - needs testing.
|
- messages is still broken in several ways - needs testing.
|
||||||
@@ -80,14 +80,14 @@ FEATURES:
|
|||||||
6 Use ctrl-w+j/k/w to switch between sidebar, content, preview window
|
6 Use ctrl-w+j/k/w to switch between sidebar, content, preview window
|
||||||
6 Command :tags for getting a list of used tags
|
6 Command :tags for getting a list of used tags
|
||||||
6 ;?<hint> should show more information
|
6 ;?<hint> should show more information
|
||||||
5 when looking at a zoomed out image (because it's large), zi should zoom in
|
5 when looking at a zoomed out image (because it's large), zi should zoom in
|
||||||
maybe with this? : http://mxr.mozilla.org/seamonkey/source/content/html/document/public/nsIImageDocument.idl
|
maybe with this? : http://mxr.mozilla.org/seamonkey/source/content/html/document/public/nsIImageDocument.idl
|
||||||
5 make a command to search within google search results
|
5 make a command to search within google search results
|
||||||
(http://gadelkareem.com/2007/01/28/using-google-ajax-api-as-an-array/)
|
(http://gadelkareem.com/2007/01/28/using-google-ajax-api-as-an-array/)
|
||||||
maybe impossible, needs a per-site key from google
|
maybe impossible, needs a per-site key from google
|
||||||
4 } { should jump to the next paragraph of the page (maybe impossible)
|
4 } { should jump to the next paragraph of the page (maybe impossible)
|
||||||
3 A format for 'guitablabel' and 'statusline'
|
3 A format for 'guitablabel' and 'statusline'
|
||||||
3 add a command-line window (:help cmdline-window in Vim).
|
3 add a command-line window (:help cmdline-window in Vim).
|
||||||
3 Splitting Windows with [:sp :vsp ctrl-w,s ctrl-w,v] and closing with [ctrl-w,q], moving with [ctrl-w,w or tab]
|
3 Splitting Windows with [:sp :vsp ctrl-w,s ctrl-w,v] and closing with [ctrl-w,q], moving with [ctrl-w,w or tab]
|
||||||
have a look into the split browser extension
|
have a look into the split browser extension
|
||||||
1 Add information to liberator/HACKING file about testing and optimization
|
1 Add information to liberator/HACKING file about testing and optimization
|
||||||
|
|||||||
@@ -197,7 +197,7 @@ section:Ex{nbsp}commands[ex-cmd-index,:index]
|
|||||||
||:mapclear|| Remove all mappings +
|
||:mapclear|| Remove all mappings +
|
||||||
||:mark|| Mark current location within the web page +
|
||:mark|| Mark current location within the web page +
|
||||||
||:marks|| Show all location marks of current web page +
|
||:marks|| Show all location marks of current web page +
|
||||||
||:messages|| Display previously given messages +
|
||:messages|| Display previously given messages +
|
||||||
||:mkvimperatorrc|| Write current key mappings and changed options to the config file +
|
||:mkvimperatorrc|| Write current key mappings and changed options to the config file +
|
||||||
||:nohlsearch|| Remove the search highlighting +
|
||:nohlsearch|| Remove the search highlighting +
|
||||||
||:noremap|| Map a key sequence without remapping keys +
|
||:noremap|| Map a key sequence without remapping keys +
|
||||||
|
|||||||
@@ -316,7 +316,7 @@ Completion can be enabled by specifying one of the following arguments to the
|
|||||||
*sidebar* sidebar panels
|
*sidebar* sidebar panels
|
||||||
*url* URLs
|
*url* URLs
|
||||||
*usercommand* user commands
|
*usercommand* user commands
|
||||||
*custom,{func}* custom completion, provided by {func}
|
*custom,{func}* custom completion, provided by {func}
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|E467| |E468| |:command-completion-custom| +
|
|E467| |E468| |:command-completion-custom| +
|
||||||
|
|||||||
@@ -125,13 +125,13 @@ ul, body dir, body menu {
|
|||||||
}
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
body h1, body h2, body h3, body h4, body h5, body h6 {
|
body h1, body h2, body h3, body h4, body h5, body h6 {
|
||||||
margin-left: 0
|
margin-left: 0
|
||||||
}
|
}
|
||||||
|
|
||||||
body pre {
|
body pre {
|
||||||
margin: 0.5em 10% 0.5em 1em;
|
margin: 0.5em 10% 0.5em 1em;
|
||||||
|
|||||||
@@ -23,12 +23,12 @@ syn keyword vimperatorCommand ab[breviate] ab[clear] addo[ns] b[uffer] ba[ck] bd
|
|||||||
\ cm[ap] cmapc[lear] cno[remap] comc[lear] com[mand] cu[nmap] do[autocmd] doautoa[ll] delbm[arks] delc[ommand] delmac[ros]
|
\ cm[ap] cmapc[lear] cno[remap] comc[lear] com[mand] cu[nmap] do[autocmd] doautoa[ll] delbm[arks] delc[ommand] delmac[ros]
|
||||||
\ delm[arks] delqm[arks] dels[tyle] dia[log] dl downl[oads] e[dit] ec[ho] echoe[rr] echom[sg] em[enu] exe[cute] exu[sage]
|
\ delm[arks] delqm[arks] dels[tyle] dia[log] dl downl[oads] e[dit] ec[ho] echoe[rr] echom[sg] em[enu] exe[cute] exu[sage]
|
||||||
\ fini[sh] files fo[rward] fw h[elp] ha[rdcopy] hi[ghlight] hist[ory] hs ia[bbrev] iabc[lear] im[ap] imapc[lear] ino[remap]
|
\ fini[sh] files fo[rward] fw h[elp] ha[rdcopy] hi[ghlight] hist[ory] hs ia[bbrev] iabc[lear] im[ap] imapc[lear] ino[remap]
|
||||||
\ iuna[bbrev] iu[nmap] javas[cript] ju[mps] js let loadplugins lpl ls macros ma[rk] map mapc[lear] marks mes[sages]
|
\ iuna[bbrev] iu[nmap] javas[cript] ju[mps] js let loadplugins lpl ls macros ma[rk] map mapc[lear] marks mes[sages]
|
||||||
\ mkv[imperatorrc] no[remap] noh[lsearch] norm[al] o[pen] optionu[sage] pa[geinfo] pagest[yle] pc[lose] pl[ay] pref[erences]
|
\ mkv[imperatorrc] no[remap] noh[lsearch] norm[al] o[pen] optionu[sage] pa[geinfo] pagest[yle] pc[lose] pl[ay] pref[erences]
|
||||||
\ prefs pw[d] q[uit] qa[ll] qma[rk] qmarks quita[ll] re[draw] re[load] reloada[ll] res[tart] run runt[ime] sty[le] sav[eas]
|
\ prefs pw[d] q[uit] qa[ll] qma[rk] qmarks quita[ll] re[draw] re[load] reloada[ll] res[tart] run runt[ime] sty[le] sav[eas]
|
||||||
\ sb[ar] sb[open] sbcl[ose] scrip[tnames] se[t] setg[lobal] setl[ocal] sideb[ar] so[urce] st[op] tN[ext] t[open] tab
|
\ sb[ar] sb[open] sbcl[ose] scrip[tnames] se[t] setg[lobal] setl[ocal] sideb[ar] so[urce] st[op] tN[ext] t[open] tab
|
||||||
\ tabde[tach] tabd[uplicate] tabN[ext] tabc[lose] tabe[dit] tabfir[st] tabl[ast] tabm[ove] tabn[ext] tabnew tabo[nly] tabopen
|
\ tabde[tach] tabd[uplicate] tabN[ext] tabc[lose] tabe[dit] tabfir[st] tabl[ast] tabm[ove] tabn[ext] tabnew tabo[nly] tabopen
|
||||||
\ tabp[revious] tabr[ewind] tabs time tn[ext] tp[revious] u[ndo] una[bbreviate] undoa[ll] unl[et] unm[ap] ve[rsion]
|
\ tabp[revious] tabr[ewind] tabs time tn[ext] tp[revious] u[ndo] una[bbreviate] undoa[ll] unl[et] unm[ap] ve[rsion]
|
||||||
\ vie[wsource] viu[sage] w[rite] wc[lose] win[open] winc[lose] wine[dit] wo[pen] wqa[ll] wq xa[ll] zo[om]
|
\ vie[wsource] viu[sage] w[rite] wc[lose] win[open] winc[lose] wine[dit] wo[pen] wqa[ll] wq xa[ll] zo[om]
|
||||||
\ contained
|
\ contained
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user