1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 09:57:59 +01:00

removed the command wrapping in the help output

This commit is contained in:
Viktor Kojouharov
2007-04-23 18:46:31 +00:00
parent becfb9ca3f
commit 9a8a0b92f3
2 changed files with 16 additions and 6 deletions

View File

@@ -71,28 +71,35 @@ var g_commands = [/*{{{*/
], ],
[ [
["bmadd"], ["bmadd"],
["bmadd [-t \"my custom title\"] [-T \"comma,separated,tags\"] [url]"], ["bmadd [-tT] [url]"],
"Add a bookmark<br/>" + "Add a bookmark<br/>" +
"If you don't add a custom title, either the title of the webpage or the URL will be taken as the title.<br/>" + "If you don't add a custom title, either the title of the webpage or the URL will be taken as the title.<br/>" +
"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.<br/>" + "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.<br/>" +
"You can omit the optional [url] field, so just do <code>:bmadd</code> 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 <code>:bmadd</code> to bookmark the currently loaded web page with a default title and without any tags.<br/>" +
"The following options WILL be interpretted in the future:<br/>" +
" -t 'custom title'<br/>" +
" -T comma,separated,tag,list <br/>",
bmadd, bmadd,
null null
], ],
[ [
["bmdel"], ["bmdel"],
["bmdel [-T \"comma,separated,tags\"] {url}"], ["bmdel [-T] {url}"],
"Delete a bookmark<br/>"+ "Delete a bookmark<br/>"+
"Deletes <b>all</b> bookmarks which matches the url AND the specified tags. Use <code>&lt;Tab&gt;</code> key on a regular expression to complete the url which you want to delete.", "Deletes <b>all</b> bookmarks which matches the url AND the specified tags. Use <code>&lt;Tab&gt;</code> key on a regular expression to complete the url which you want to delete.<br/>" +
"The following options WILL be interpretted in the future:<br/>" +
" -T comma,separated,tag,list <br/>",
bmdel, bmdel,
function(filter) { return get_bookmark_completions(filter); } function(filter) { return get_bookmark_completions(filter); }
], ],
[ [
["bookmarks", "bm"], ["bookmarks", "bm"],
["bm[!] [-T \"comma,separated,tags\"] {regexp}"], ["bm[!] [-T] {regexp}"],
"Show bookmarks<br/>" + "Show bookmarks<br/>" +
"Open the preview window at the bottom of the screen for all bookmarks which match the regexp either in the title or URL.<br/>" + "Open the preview window at the bottom of the screen for all bookmarks which match the regexp either in the title or URL.<br/>" +
"Close this window with <code>:pclose</code> or open entries with double click in the current tab or middle click in a new tab.", "Close this window with <code>:pclose</code> or open entries with double click in the current tab or middle click in a new tab.<br/>" +
"The following options WILL be interpretted in the future:<br/>" +
" -T comma,separated,tag,list <br/>",
bmshow, bmshow,
function(filter) { return get_bookmark_completions(filter); } function(filter) { return get_bookmark_completions(filter); }
], ],

View File

@@ -70,6 +70,9 @@ tr.tag td {\
tr.tag code, td.usage code {\ tr.tag code, td.usage code {\
margin: 0px 2px;\ margin: 0px 2px;\
}\ }\
td.usage code {\
white-space: nowrap;\
}\
tr.tag code {\ tr.tag code {\
font-weight: bold;\ font-weight: bold;\
font-size: 1opx;\ font-size: 1opx;\