mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-20 23:07:59 +01:00
Added -javascript option to :abbrev, thanks mostly to anekos.
--HG-- extra : rebase_source : 06036f7e9e2bb21fc77b1cb783c8f7e4a7e3f50d
This commit is contained in:
@@ -1487,13 +1487,13 @@ const CommandLine = Module("commandline", {
|
||||
["<Space>", '"', "'"], "Expand command line abbreviation",
|
||||
function () {
|
||||
commandline.resetCompletions();
|
||||
return editor.expandAbbreviation("c");
|
||||
return editor.expandAbbreviation(modes.COMMAND_LINE);
|
||||
},
|
||||
{ route: true });
|
||||
|
||||
mappings.add(myModes,
|
||||
["<C-]>", "<C-5>"], "Expand command line abbreviation",
|
||||
function () { editor.expandAbbreviation("c"); });
|
||||
function () { editor.expandAbbreviation(modes.COMMAND_LINE); });
|
||||
|
||||
mappings.add([modes.NORMAL],
|
||||
["g<"], "Redisplay the last command output",
|
||||
|
||||
Reference in New Issue
Block a user