summaryrefslogtreecommitdiffstats
path: root/vimfx
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2016-08-09 05:43:33 -0400
committerJesse Luehrs <doy@tozt.net>2016-08-09 05:44:59 -0400
commit1cd64aa384d74aa096984dd1817d21a0a7abd241 (patch)
tree485c697945991e8f207af164fe3748bef3ee6488 /vimfx
parentf2e14308c241a67af657ed546cd3db5d5d65fe87 (diff)
downloadconf-1cd64aa384d74aa096984dd1817d21a0a7abd241.tar.gz
conf-1cd64aa384d74aa096984dd1817d21a0a7abd241.zip
allow control keybindings in insert mode
Diffstat (limited to 'vimfx')
-rw-r--r--vimfx/config.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/vimfx/config.js b/vimfx/config.js
index 6c1beb0..e776399 100644
--- a/vimfx/config.js
+++ b/vimfx/config.js
@@ -5,9 +5,9 @@ const mm = Cc['@mozilla.org/globalmessagemanager;1']
.getService(Ci.nsIMessageListenerManager);
vimfx.set('mode.normal.copy_current_url', 'y');
-vimfx.set('mode.normal.history_back', '<C-h>');
-vimfx.set('mode.normal.history_forward', '<C-l>');
-vimfx.set('mode.normal.stop', '<C-c>');
+vimfx.set('mode.normal.history_back', '<force><C-h>');
+vimfx.set('mode.normal.history_forward', '<force><C-l>');
+vimfx.set('mode.normal.stop', '<force><C-c>');
vimfx.set('mode.normal.scroll_half_page_down', 'J');
vimfx.set('mode.normal.scroll_half_page_up', 'K');
@@ -20,7 +20,7 @@ vimfx.set('mode.normal.tab_select_next', 'L');
vimfx.set('mode.normal.tab_close', 'd');
vimfx.set('mode.normal.tab_restore', 'u');
-vimfx.set('mode.normal.enter_mode_ignore', '<C-v>');
+vimfx.set('mode.normal.enter_mode_ignore', '<force><C-v>');
vimfx.set('mode.normal.dev', ': ,');
vimfx.set('notify_entered_keys', true);