From 256beee031efef70f4ee750044d9e697d66868bd Mon Sep 17 00:00:00 2001 From: Stephen Blott Date: Thu, 22 Jan 2015 16:50:58 +0000 Subject: Visual/edit modes: develop edit mode. - implement "i", "a". - fix "w" for edit mode. - try out "e" for enter edit mode. - initial implementation "o", "O" - Suppress backspace and delete. - Scroll in text areas. --- background_scripts/commands.coffee | 3 +++ 1 file changed, 3 insertions(+) (limited to 'background_scripts/commands.coffee') diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee index f8167042..f79f495b 100644 --- a/background_scripts/commands.coffee +++ b/background_scripts/commands.coffee @@ -198,7 +198,10 @@ defaultKeyMappings = "i": "enterInsertMode" "v": "enterVisualMode" + # NOTE(smblott). We'll try two default bindings for enterEditMode, and see which ends up feeling mode + # natural. "gv": "enterEditMode" + "e": "enterEditMode" "H": "goBack" "L": "goForward" -- cgit v1.2.3