mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-20 00:57:59 +01:00
Get rid of absurd Map#route flag. Consolodate some constants.
This commit is contained in:
@@ -588,8 +588,10 @@ var Editor = Module("editor", {
|
||||
|
||||
mappings.add([modes.INSERT],
|
||||
["<Space>", "<Return>"], "Expand insert mode abbreviation",
|
||||
function () { editor.expandAbbreviation(modes.INSERT); },
|
||||
{ route: true });
|
||||
function () {
|
||||
editor.expandAbbreviation(modes.INSERT);
|
||||
return Events.PASS;
|
||||
});
|
||||
|
||||
mappings.add([modes.INSERT],
|
||||
["<C-]>", "<C-5>"], "Expand insert mode abbreviation",
|
||||
|
||||
Reference in New Issue
Block a user