aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts/commands.coffee
diff options
context:
space:
mode:
authorStephen Blott2015-01-24 17:50:47 +0000
committerStephen Blott2015-01-25 09:14:39 +0000
commit9c4603680284a4e00f11b097aebc65c6f6c0af07 (patch)
tree1ebce9d2cfa9a7afabe91878a7eef101d78a3d20 /background_scripts/commands.coffee
parent4d47050983c46fc6563b40517aef949b7ad46b54 (diff)
downloadvimium-9c4603680284a4e00f11b097aebc65c6f6c0af07.tar.bz2
Visual/edit modes: visual line mode.
Diffstat (limited to 'background_scripts/commands.coffee')
-rw-r--r--background_scripts/commands.coffee3
1 files changed, 3 insertions, 0 deletions
diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee
index 67c4b9ad..80f18409 100644
--- a/background_scripts/commands.coffee
+++ b/background_scripts/commands.coffee
@@ -112,6 +112,7 @@ Commands =
"goToRoot",
"enterInsertMode",
"enterVisualMode",
+ "enterVisualLineMode",
"enterEditMode",
"focusInput",
"LinkHints.activateMode",
@@ -198,6 +199,7 @@ defaultKeyMappings =
"i": "enterInsertMode"
"v": "enterVisualMode"
+ "V": "enterVisualLineMode"
"e": "enterEditMode"
"H": "goBack"
@@ -288,6 +290,7 @@ commandDescriptions =
enterInsertMode: ["Enter insert mode", { noRepeat: true }]
enterVisualMode: ["Enter visual mode (not yet implemented)", { noRepeat: true }]
+ enterVisualLineMode: ["Enter visual line mode (not yet implemented)", { noRepeat: true }]
enterEditMode: ["Enter vim-like edit mode (not yet implemented)", { noRepeat: true }]
focusInput: ["Focus the first text box on the page. Cycle between them using tab",