aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMax Christian Pohle2016-10-06 13:14:09 +0200
committerMax Christian Pohle2016-10-06 13:14:09 +0200
commit52349625ead61bfba78a67c79ab8305710c926f4 (patch)
tree49d9778d445679ea5b9a728692f9220aa5672b6c /doc
parent35089d9e1d0f596a1c846976a2962db9260ca66b (diff)
downloadvim-52349625ead61bfba78a67c79ab8305710c926f4.tar.bz2
vim-52349625ead61bfba78a67c79ab8305710c926f4.zip
Simpler help navigation
Diffstat (limited to 'doc')
-rw-r--r--doc/shortcuts.txt13
1 files changed, 12 insertions, 1 deletions
diff --git a/doc/shortcuts.txt b/doc/shortcuts.txt
index 3b12d57..9162df8 100644
--- a/doc/shortcuts.txt
+++ b/doc/shortcuts.txt
@@ -21,7 +21,9 @@ iB = select block between curly braces (:help object-select)
21:set list = display non printable characters 21:set list = display non printable characters
22:retab = replaces tabs with spaces 22:retab = replaces tabs with spaces
23:set expandtab = in insert mode: replace tab with spaces 23:set expandtab = in insert mode: replace tab with spaces
24:Explore = cli version open file dialog 24:Explore = cli version open file dialog (file explorer)
25:Lex = use netrw as project drawer (stays open in its own window)
26:only = 'maximize' current buffer
25 27
26 28
27[navigation] 29[navigation]
@@ -68,10 +70,19 @@ the last line can be a mode line, which holds settings like tab width:
68:bn = buffer next 70:bn = buffer next
69:bp = buffer previous 71:bp = buffer previous
70:bd = buffer dispatch (close) 72:bd = buffer dispatch (close)
73:b <tab> = switch buffer by name (use <tab> and <return>)
71 74
72 75
73[special] 76[special]
74g CTRL-g = display file properties including word and char count 77g CTRL-g = display file properties including word and char count
75CTRL-X CTRL-F = display file name completions using (vim-internal) omnicomplete 78CTRL-X CTRL-F = display file name completions using (vim-internal) omnicomplete
76 79
80
81[netrw]
82:Lex = open the netrw-view as project drawer
83gn = makes the directory under the cursor the root directory
84a = toggles display of hidden files
85
86
87
77# vim: noai:ts=2:sw=2 filetype=dosini 88# vim: noai:ts=2:sw=2 filetype=dosini
..