diff options
| author | Stephen Blott | 2016-01-31 12:40:02 +0000 |
|---|---|---|
| committer | Stephen Blott | 2016-01-31 12:40:04 +0000 |
| commit | 68a39707817ab8693e1ddd9381611c0bfb46ebaa (patch) | |
| tree | 0e2766458226236f7f0cc54e8ba0ea58fc0ce45a /background_scripts | |
| parent | 1f8abb98a3750a00ee16aac34f81de27413f1816 (diff) | |
| download | vimium-68a39707817ab8693e1ddd9381611c0bfb46ebaa.tar.bz2 | |
Wholly remove edit-mode code.
I am now of the opinion that we should not do this within Vimium, as:
- better solutions exist externally, and
- it's better to not have to maintain this.
Diffstat (limited to 'background_scripts')
| -rw-r--r-- | background_scripts/commands.coffee | 3 |
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 }] |
