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

redesing of the help page to be more like vim's help. :tab command like in vim.

the extension id has changed to a more readable string. any older versions of vimperator MUST be uninstalled, otherwise there will be 2 versions of the extension in the addons list.
This commit is contained in:
Viktor Kojouharov
2007-04-22 23:21:38 +00:00
parent d953650220
commit f7681aff1f
5 changed files with 391 additions and 260 deletions

View File

@@ -537,7 +537,13 @@ function onCommandBarKeypress(evt)/*{{{*/
// unfocus command line first
add_to_command_history(command);
[prev_match, heredoc, end] = multiliner(command, prev_match, heredoc);
try {
[prev_match, heredoc, end] = multiliner(command, prev_match, heredoc);
} catch(e) {
echoerr(e.name + ": " + e.message);
prev_match = new Array(5);
heredoc = '';
}
if (!end)
command_line.value = "";
}