From 01b7a39a5b9f4ae5ce5d8b36b4909e6b14b06c1a Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Sun, 11 Jan 2009 20:00:34 +1100 Subject: [PATCH] Whitespace fixes. --- HACKING | 2 +- README.E4X | 2 +- common/content/io.js | 2 +- common/content/liberator.xul | 2 +- common/javascript.vim | 32 +- common/skin/liberator.css | 2 +- muttator/locale/en-US/intro.txt | 8 +- muttator/locale/en-US/xhtml11.css | 666 ++++++++++++++-------------- vimperator/AUTHORS | 2 +- vimperator/Donors | 10 +- vimperator/TODO | 8 +- vimperator/locale/en-US/index.txt | 2 +- vimperator/locale/en-US/map.txt | 2 +- vimperator/locale/en-US/xhtml11.css | 4 +- vimperator/vimperator.vim | 12 +- 15 files changed, 378 insertions(+), 378 deletions(-) diff --git a/HACKING b/HACKING index 6ac51844..71093a25 100644 --- a/HACKING +++ b/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. I am all about making code clearer also to new developers. And this 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 new immediately, but will probably do so over time, when I see it. --mst diff --git a/README.E4X b/README.E4X index 0aea4d53..5e0b8a93 100644 --- a/README.E4X +++ b/README.E4X @@ -95,7 +95,7 @@ usage you'll see herein: // Adding a quux attribute to the root -> xml.@quux = "foo" +> xml.@quux = "foo" foo > xml diff --git a/common/content/io.js b/common/content/io.js index 3bd59ded..ca0befe6 100644 --- a/common/content/io.js +++ b/common/content/io.js @@ -1075,7 +1075,7 @@ lookup: * fn is called with a temp file, created with * {@link #createTempFile}, for each explicit argument. Ensures that * all files are removed when fn returns. - * + * * @param {function} fn The function to execute. * @param {Object} self The 'this' object used when executing fn. * @return {boolean} false if temp files couldn't be created, diff --git a/common/content/liberator.xul b/common/content/liberator.xul index b493466f..eccb5e72 100644 --- a/common/content/liberator.xul +++ b/common/content/liberator.xul @@ -48,7 +48,7 @@ the terms of any one of the MPL, the GPL or the LGPL. - + diff --git a/common/javascript.vim b/common/javascript.vim index 4b6bbbf1..dc7f956a 100644 --- a/common/javascript.vim +++ b/common/javascript.vim @@ -3,14 +3,14 @@ " Maintainer: Yi Zhao (ZHAOYI) " Last Change: May 17, 2007 " 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. ;) " 2, Follow the suggestioin from Ingo Karkat. -" The 'foldtext' and 'foldlevel' settings should only be -" changed if the file being edited is pure JavaScript, +" The 'foldtext' and 'foldlevel' settings should only be +" changed if the file being edited is pure JavaScript, " not if JavaScript syntax is embedded inside other syntaxes. -" 3, Remove function FT_JavaScriptDoc(). -" Since VIM do the better than me. +" 3, Remove function FT_JavaScriptDoc(). +" Since VIM do the better than me. " " TODO: " - 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 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 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 javascriptCSS matchgroup=javascriptCSSDelimiter start="" end="" contains=@cssTop @@ -270,12 +270,12 @@ let b:did_indent = 1 setlocal indentexpr=GetJsIndent() setlocal indentkeys=0{,0},0),:,!^F,O,e,=*/ " Clean CR when the file is in Unix format -if &fileformat == "unix" +if &fileformat == "unix" silent! %s/\r$//g endif " Only define the functions once per Vim session. "if exists("*GetJsIndent") -" finish +" finish "endif "function! GetJsIndent() " let pnum = prevnonblank(v:lnum - 1) @@ -285,15 +285,15 @@ endif " let line = getline(v:lnum) " let pline = getline(pnum) " let ind = indent(pnum) -" +" " if pline =~ '{\s*$\|[\s*$\|(\s*$' " let ind = ind + &sw " endif -" +" " if pline =~ ';\s*$' && line =~ '^\s*}' " let ind = ind - &sw " endif -" +" " if pline =~ '\s*]\s*$' && line =~ '^\s*),\s*$' " let ind = ind - &sw " endif @@ -301,27 +301,27 @@ endif " if pline =~ '\s*]\s*$' && line =~ '^\s*}\s*$' " let ind = ind - &sw " endif -" +" " if line =~ '^\s*});\s*$\|^\s*);\s*$' && pline !~ ';\s*$' " let ind = ind - &sw " endif -" +" " if line =~ '^\s*})' && pline =~ '\s*,\s*$' " let ind = ind - &sw " endif -" +" " if line =~ '^\s*}();\s*$' && pline =~ '^\s*}\s*$' " let ind = ind - &sw " endif " -" if line =~ '^\s*}),\s*$' +" if line =~ '^\s*}),\s*$' " let ind = ind - &sw " endif " " if pline =~ '^\s*}\s*$' && line =~ '),\s*$' " let ind = ind - &sw " endif -" +" " if pline =~ '^\s*for\s*' && line =~ ')\s*$' " let ind = ind + &sw " endif diff --git a/common/skin/liberator.css b/common/skin/liberator.css index 7371a232..ee8ad72f 100644 --- a/common/skin/liberator.css +++ b/common/skin/liberator.css @@ -93,7 +93,7 @@ the terms of any one of the MPL, the GPL or the LGPL. } /* Applied to completion buffer, MOW, browser window */ -@-moz-document +@-moz-document url-prefix(chrome://) { .liberator-container > * { diff --git a/muttator/locale/en-US/intro.txt b/muttator/locale/en-US/intro.txt index c482e293..20369b4e 100644 --- a/muttator/locale/en-US/intro.txt +++ b/muttator/locale/en-US/intro.txt @@ -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. |warning| + -Warning: -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. + +Warning: +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 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 [c]:help[c] to get this help window back. diff --git a/muttator/locale/en-US/xhtml11.css b/muttator/locale/en-US/xhtml11.css index 7a959da4..9ebee13f 100644 --- a/muttator/locale/en-US/xhtml11.css +++ b/muttator/locale/en-US/xhtml11.css @@ -1,333 +1,333 @@ -/* - 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; -} -fieldset.paypal { - border: none; -} - -.argument { - color: #6A97D4; -} -.command { - font-weight: bold; - color: #632610; -} -.mapping { - font-weight: bold; - color: #102663; -} -.option { - font-weight: bold; - color: #106326; -} -.quoteblock { - margin-left: 140px; - padding-bottom: 10px; -} +/* + 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; +} +fieldset.paypal { + border: none; +} + +.argument { + color: #6A97D4; +} +.command { + font-weight: bold; + color: #632610; +} +.mapping { + font-weight: bold; + color: #102663; +} +.option { + font-weight: bold; + color: #106326; +} +.quoteblock { + margin-left: 140px; + padding-bottom: 10px; +} diff --git a/vimperator/AUTHORS b/vimperator/AUTHORS index 8af8b884..8d89467e 100644 --- a/vimperator/AUTHORS +++ b/vimperator/AUTHORS @@ -11,7 +11,7 @@ Developers: Inactive/former developers: * Viktor Kojouharov (Виктор Кожухаров) * Marco Candrian (mac@calmar.ws) - + Patches (in no special order): * Ruud Grosmann ('followhints' option) * Xie&Tian (multibyte support for hints) diff --git a/vimperator/Donors b/vimperator/Donors index 9f129171..88996c93 100644 --- a/vimperator/Donors +++ b/vimperator/Donors @@ -11,10 +11,10 @@ * Mats Vestin * Berni Joss * Peter Rufer -* Yann Le Du +* Yann Le Du * Wilson Bilkovich * Galen Taylor -* Ben Hoffstein +* Ben Hoffstein * Luc St-Louis * Robert Meerman * Silvio Di Stefano @@ -29,8 +29,8 @@ * Ryan McBride * Brian Clark * Gavin Gilmour -* Sivaraj Doddannan -* Michael Hrabanek +* Sivaraj Doddannan +* Michael Hrabanek * Nigel McNie * Ben Damm * Anton Kovalenko @@ -47,7 +47,7 @@ * Ted Pavlic * Jacqueline Wegscheid * Kashyap Paidimarri -* Gabriel Gellner +* Gabriel Gellner * Marco Candrian * Ovidiu Curcan * Ivo-Jose Jimenez-Ramos (2x) diff --git a/vimperator/TODO b/vimperator/TODO index 1db95de7..9701fb9f 100644 --- a/vimperator/TODO +++ b/vimperator/TODO @@ -22,7 +22,7 @@ BUGS: (recent CVS regressions): - :set noflashblock seems broken (= :set fb? afterwards says "fb"), let's see if that's a plugin or a vimp issue. -- completions does not beep anymore when none are available, try :jljlkjlkj +- completions does not beep anymore when none are available, try :jljlkjlkj - visual caret mode is broken, requires a manual page focus first anyway or else it chucks, I haven't investigated --djk - 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 Command :tags for getting a list of used tags 6 ;? 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 5 make a command to search within google search results (http://gadelkareem.com/2007/01/28/using-google-ajax-api-as-an-array/) maybe impossible, needs a per-site key from google 4 } { should jump to the next paragraph of the page (maybe impossible) -3 A format for 'guitablabel' and 'statusline' -3 add a command-line window (:help cmdline-window in Vim). +3 A format for 'guitablabel' and 'statusline' +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] have a look into the split browser extension 1 Add information to liberator/HACKING file about testing and optimization diff --git a/vimperator/locale/en-US/index.txt b/vimperator/locale/en-US/index.txt index c82e09a2..2f5d794e 100644 --- a/vimperator/locale/en-US/index.txt +++ b/vimperator/locale/en-US/index.txt @@ -197,7 +197,7 @@ section:Ex{nbsp}commands[ex-cmd-index,:index] ||:mapclear|| Remove all mappings + ||:mark|| Mark current location within the 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 + ||:nohlsearch|| Remove the search highlighting + ||:noremap|| Map a key sequence without remapping keys + diff --git a/vimperator/locale/en-US/map.txt b/vimperator/locale/en-US/map.txt index 9c7f8cd3..152466bc 100644 --- a/vimperator/locale/en-US/map.txt +++ b/vimperator/locale/en-US/map.txt @@ -316,7 +316,7 @@ Completion can be enabled by specifying one of the following arguments to the *sidebar* sidebar panels *url* URLs *usercommand* user commands -*custom,{func}* custom completion, provided by {func} +*custom,{func}* custom completion, provided by {func} -------------------------------------------------------------------------------- |E467| |E468| |:command-completion-custom| + diff --git a/vimperator/locale/en-US/xhtml11.css b/vimperator/locale/en-US/xhtml11.css index 194c0557..427cbe99 100644 --- a/vimperator/locale/en-US/xhtml11.css +++ b/vimperator/locale/en-US/xhtml11.css @@ -125,13 +125,13 @@ ul, body dir, body menu { } html { - margin: 0; + 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; diff --git a/vimperator/vimperator.vim b/vimperator/vimperator.vim index 2e4f0481..9a46884b 100644 --- a/vimperator/vimperator.vim +++ b/vimperator/vimperator.vim @@ -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] \ 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] - \ 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] - \ 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 - \ 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] + \ 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] + \ 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 + \ 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] \ vie[wsource] viu[sage] w[rite] wc[lose] win[open] winc[lose] wine[dit] wo[pen] wqa[ll] wq xa[ll] zo[om] \ contained