1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 02:38:00 +01:00

Better :yank formatting.

This commit is contained in:
Kris Maglione
2010-10-14 22:06:17 -04:00
parent 7853331e7c
commit bea1c20858
6 changed files with 29 additions and 8 deletions

View File

@@ -623,7 +623,11 @@ const Editor = Module("editor", {
mappings.add([modes.INSERT],
["<Tab>"], "Expand insert mode abbreviation",
function () { editor.expandAbbreviation(modes.INSERT); document.commandDispatcher.advanceFocus(); });
function () {
util.dumpStack("\n\n\n<Tab>");
editor.expandAbbreviation(modes.INSERT);
document.commandDispatcher.advanceFocus();
});
mappings.add([modes.INSERT],
["<C-]>", "<C-5>"], "Expand insert mode abbreviation",