diff --git a/chrome/content/vimperator/commands.js b/chrome/content/vimperator/commands.js index 4e6999b1..6af67e42 100644 --- a/chrome/content/vimperator/commands.js +++ b/chrome/content/vimperator/commands.js @@ -71,28 +71,35 @@ var g_commands = [/*{{{*/ ], [ ["bmadd"], - ["bmadd [-t \"my custom title\"] [-T \"comma,separated,tags\"] [url]"], + ["bmadd [-tT] [url]"], "Add a bookmark
" + "If you don't add a custom title, either the title of the webpage or the URL will be taken as the title.
" + "Tags WILL be some mechanism to classify bookmarks. Assume, you tag a url with the tags \"linux\" and \"computer\" you'll be able to search for bookmarks containing these tags.
" + - "You can omit the optional [url] field, so just do :bmadd to bookmark the currently loaded web page with a default title and without any tags.", + "You can omit the optional [url] field, so just do :bmadd to bookmark the currently loaded web page with a default title and without any tags.
" + + "The following options WILL be interpretted in the future:
" + + " -t 'custom title'
" + + " -T comma,separated,tag,list
", bmadd, null ], [ ["bmdel"], - ["bmdel [-T \"comma,separated,tags\"] {url}"], + ["bmdel [-T] {url}"], "Delete a bookmark
"+ - "Deletes all bookmarks which matches the url AND the specified tags. Use <Tab> key on a regular expression to complete the url which you want to delete.", + "Deletes all bookmarks which matches the url AND the specified tags. Use <Tab> key on a regular expression to complete the url which you want to delete.
" + + "The following options WILL be interpretted in the future:
" + + " -T comma,separated,tag,list
", bmdel, function(filter) { return get_bookmark_completions(filter); } ], [ ["bookmarks", "bm"], - ["bm[!] [-T \"comma,separated,tags\"] {regexp}"], + ["bm[!] [-T] {regexp}"], "Show bookmarks
" + "Open the preview window at the bottom of the screen for all bookmarks which match the regexp either in the title or URL.
" + - "Close this window with :pclose or open entries with double click in the current tab or middle click in a new tab.", + "Close this window with :pclose or open entries with double click in the current tab or middle click in a new tab.
" + + "The following options WILL be interpretted in the future:
" + + " -T comma,separated,tag,list
", bmshow, function(filter) { return get_bookmark_completions(filter); } ], diff --git a/chrome/content/vimperator/help.js b/chrome/content/vimperator/help.js index 2812a743..cfd9950e 100644 --- a/chrome/content/vimperator/help.js +++ b/chrome/content/vimperator/help.js @@ -70,6 +70,9 @@ tr.tag td {\ tr.tag code, td.usage code {\ margin: 0px 2px;\ }\ +td.usage code {\ + white-space: nowrap;\ +}\ tr.tag code {\ font-weight: bold;\ font-size: 1opx;\