aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md20
1 files changed, 10 insertions, 10 deletions
diff --git a/README.md b/README.md
index 07ba6ca..eb8f518 100644
--- a/README.md
+++ b/README.md
@@ -89,25 +89,25 @@ inoremap <C-P> <C-O>:CtrlP<CR>
Overriding or disabling shortcuts in this plugin can be done in several ways. The simplest way is to use:
```vim
-let g:heresy_use_shortcuts = 0
+let g:heresy_shortcuts = 0
inoremap ... custom mapping ...
call heresy#StartHeresy()
```
Shortcuts are also grouped roughly under the headings described above, so you may be able to disable one of the following:
```vim
-let g:heresy_use_general_app_shortcuts = 1
-let g:heresy_use_pane_controls = 1
-let g:heresy_use_copypasting = 1
-let g:heresy_use_indenting = 1
-let g:heresy_use_finding = 1
-let g:heresy_use_undoing = 1
-let g:heresy_use_text_tricks = 1
+let g:heresy_app_shortcuts = 1
+let g:heresy_copypaste_shortcuts = 1
+let g:heresy_undo_shortcuts = 1
+let g:heresy_find_shortcuts = 1
+let g:heresy_line_shortcuts = 1
+let g:heresy_pane_shortcuts = 1
+let g:heresy_indentation_shortcuts = 1
" Small fixes to HOME and PAGEUP behaviour
-let g:heresy_use_editor_fixes = 1
+let g:heresy_navigation_fixes = 1
" Allows scrolling through wrapped lines one visual line at a time
-let g:heresy_use_better_wrap_navigation = 1
+let g:heresy_better_wrap_navigation = 1
```
Lastly you can unmap a mapping using commands such as `nunmap`, `iunmap`, `sunmap`, etc.