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

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
This commit is contained in:
Doug Kearns
2010-11-05 01:12:55 +11:00
parent 1ba66f6093
commit c1c20175fb

View File

@@ -524,7 +524,7 @@ const Editor = Module("editor", {
addBeginInsertModeMap(["i", "<Insert>"], []); addBeginInsertModeMap(["i", "<Insert>"], []);
addBeginInsertModeMap(["a"], ["cmd_charNext"]); addBeginInsertModeMap(["a"], ["cmd_charNext"]);
addBeginInsertModeMap(["I", "gI"], ["cmd_beginLine"]); addBeginInsertModeMap(["I"], ["cmd_beginLine"]);
addBeginInsertModeMap(["A"], ["cmd_endLine"]); addBeginInsertModeMap(["A"], ["cmd_endLine"]);
addBeginInsertModeMap(["s"], ["cmd_deleteCharForward"]); addBeginInsertModeMap(["s"], ["cmd_deleteCharForward"]);
addBeginInsertModeMap(["S"], ["cmd_deleteToEndOfLine", "cmd_deleteToBeginningOfLine"]); addBeginInsertModeMap(["S"], ["cmd_deleteToEndOfLine", "cmd_deleteToBeginningOfLine"]);