From c1c20175fb67f879f7746b68a56943c4766f0050 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Fri, 5 Nov 2010 01:12:55 +1100 Subject: [PATCH] Remove support for t_gI for now. It's odd to support just that Vim extension even though its implementation is correct and that of t_I is not. We should look at adding these commands later when the core Vi commands are more accurately implemented. --HG-- extra : rebase_source : f33cc9c9cbe0de8af2640655c0c7f9485f0a8a9d --- common/content/editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/editor.js b/common/content/editor.js index 2dab052e..d30d359b 100644 --- a/common/content/editor.js +++ b/common/content/editor.js @@ -524,7 +524,7 @@ const Editor = Module("editor", { addBeginInsertModeMap(["i", ""], []); addBeginInsertModeMap(["a"], ["cmd_charNext"]); - addBeginInsertModeMap(["I", "gI"], ["cmd_beginLine"]); + addBeginInsertModeMap(["I"], ["cmd_beginLine"]); addBeginInsertModeMap(["A"], ["cmd_endLine"]); addBeginInsertModeMap(["s"], ["cmd_deleteCharForward"]); addBeginInsertModeMap(["S"], ["cmd_deleteToEndOfLine", "cmd_deleteToBeginningOfLine"]);