aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts
diff options
context:
space:
mode:
authorStephen Blott2016-01-31 12:43:10 +0000
committerStephen Blott2016-01-31 12:43:10 +0000
commit72f76a4ef22b06e076cf631b8e0c3ad5cc3ccfbd (patch)
tree0e2766458226236f7f0cc54e8ba0ea58fc0ce45a /background_scripts
parent1f8abb98a3750a00ee16aac34f81de27413f1816 (diff)
parent68a39707817ab8693e1ddd9381611c0bfb46ebaa (diff)
downloadvimium-72f76a4ef22b06e076cf631b8e0c3ad5cc3ccfbd.tar.bz2
Merge pull request #1961 from smblott-github/remove-edit-mode
Wholly remove edit-mode code.
Diffstat (limited to 'background_scripts')
-rw-r--r--background_scripts/commands.coffee3
1 files changed, 0 insertions, 3 deletions
diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee
index c8121a96..e3a6f0dc 100644
--- a/background_scripts/commands.coffee
+++ b/background_scripts/commands.coffee
@@ -98,7 +98,6 @@ Commands =
"enterInsertMode",
"enterVisualMode",
"enterVisualLineMode",
- # "enterEditMode",
"focusInput",
"LinkHints.activateMode",
"LinkHints.activateModeToOpenInNewTab",
@@ -187,7 +186,6 @@ defaultKeyMappings =
"i": "enterInsertMode"
"v": "enterVisualMode"
"V": "enterVisualLineMode"
- # "gv": "enterEditMode"
"H": "goBack"
"L": "goForward"
@@ -279,7 +277,6 @@ commandDescriptions =
enterInsertMode: ["Enter insert mode", { noRepeat: true }]
enterVisualMode: ["Enter visual mode", { noRepeat: true }]
enterVisualLineMode: ["Enter visual line mode", { 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",
{ passCountToFunction: true }]