1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 13:07:59 +01:00

Fix count processing for Textarea mode commands.

This commit is contained in:
Doug Kearns
2009-10-11 02:03:16 +11:00
parent 42db245cac
commit ddcdca1e59

View File

@@ -255,7 +255,7 @@ const modes = (function () //{{{
self.addMode("VISUAL", { char: "v", display: function () "VISUAL" + (extended & modes.LINE ? " LINE" : "") });
self.addMode("COMMAND_LINE", { char: "c", input: true });
self.addMode("CARET"); // text cursor is visible
self.addMode("TEXTAREA", { char: "i", input: true }); // text cursor is in a HTMLTextAreaElement
self.addMode("TEXTAREA", { char: "i" });
self.addMode("EMBED", { input: true });
self.addMode("CUSTOM", { display: function () plugins.mode });
// extended modes, can include multiple modes, and even main modes