aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Blott2016-01-29 06:30:32 +0000
committerStephen Blott2016-01-29 06:30:32 +0000
commita65ca68a0011fd8f9ab1282db8e85476633c0956 (patch)
treebe7db8ab68ec5161642a7faef1fd425c2d10e111
parentdae75d47a6662d6a65391215c2998b705942bf10 (diff)
downloadvimium-a65ca68a0011fd8f9ab1282db8e85476633c0956.tar.bz2
Revert "Enable edit mode."
This reverts commit e975633f3ee8da9e01c332b2dcdb8422d5f941d8.
-rw-r--r--README.md1
-rw-r--r--background_scripts/commands.coffee6
2 files changed, 3 insertions, 4 deletions
diff --git a/README.md b/README.md
index 3e409f92..fe3475be 100644
--- a/README.md
+++ b/README.md
@@ -155,7 +155,6 @@ Release Notes
-------------
Next version (not yet released)
-- Edit mode for text inputs (including GMail): `gv` (beta feature).
- Bug fixes:
- Fix endless scrolling (#1911).
diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee
index 5dfd5259..c8121a96 100644
--- a/background_scripts/commands.coffee
+++ b/background_scripts/commands.coffee
@@ -98,7 +98,7 @@ Commands =
"enterInsertMode",
"enterVisualMode",
"enterVisualLineMode",
- "enterEditMode",
+ # "enterEditMode",
"focusInput",
"LinkHints.activateMode",
"LinkHints.activateModeToOpenInNewTab",
@@ -187,7 +187,7 @@ defaultKeyMappings =
"i": "enterInsertMode"
"v": "enterVisualMode"
"V": "enterVisualLineMode"
- "gv": "enterEditMode"
+ # "gv": "enterEditMode"
"H": "goBack"
"L": "goForward"
@@ -279,7 +279,7 @@ 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 (beta feature)", { 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 }]