1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 06:07:59 +01:00

Fix inserting [ '"] as the first character in command-line mode.

This commit is contained in:
Kris Maglione
2010-10-12 12:25:00 -04:00
parent 8582ea8ba5
commit 6907ae130e
3 changed files with 8 additions and 2 deletions

View File

@@ -852,6 +852,9 @@ const CommandLine = Module("commandline", {
catch (e) {
dactyl.reportError(e, true);
}
finally {
return true;
}
},
/**
@@ -1644,7 +1647,8 @@ const CommandLine = Module("commandline", {
["<Space>", '"', "'"], "Expand command line abbreviation",
function () {
commandline.resetCompletions();
return editor.expandAbbreviation(modes.COMMAND_LINE);
editor.expandAbbreviation(modes.COMMAND_LINE);
return true;
},
{ route: true });