1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 21:37:58 +01:00

*** empty log message ***

This commit is contained in:
Martin Stubenschrott
2008-03-03 14:46:09 +00:00
parent 80a8611377
commit c060110001
2 changed files with 6 additions and 1 deletions

View File

@@ -268,6 +268,11 @@ vimperator.Editor = function () //{{{
["<C-i>"], "Edit text field with an external editor",
function () { vimperator.editor.editWithExternalEditor(); });
// FIXME: <esc> does not work correctly
vimperator.mappings.add([vimperator.modes.INSERT],
["<C-t>"], "Edit text field in vi mode",
function () { vimperator.mode = vimperator.modes.TEXTAREA; });
vimperator.mappings.add([vimperator.modes.INSERT],
["<Space>", "<Return>"], "Expand insert mode abbreviation",
function () { return vimperator.editor.expandAbbreviation("i"); },