mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-21 11:17:58 +01:00
Fix count processing for Textarea mode commands.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user