aboutsummaryrefslogtreecommitdiff
path: root/doc/shortcuts.txt
diff options
context:
space:
mode:
authorMax Christian Pohle2016-05-24 14:14:54 +0200
committerMax Christian Pohle2016-05-24 14:14:54 +0200
commitfe89b5671d65560b57d51485789c23c38885e28d (patch)
treed2483b2b4d80631411fc54ab55609073085c8742 /doc/shortcuts.txt
parent4c27c4e8a5d281427bc69fe442ea0f35bd4a53f9 (diff)
downloadvim-fe89b5671d65560b57d51485789c23c38885e28d.tar.bz2
vim-fe89b5671d65560b57d51485789c23c38885e28d.zip
major update: plugins, colorscheme, shortcuts, new git submodule!
* using nelstroms mac color scheme * 'fixed' some keyboard shortcuts to behave more like in other editors * added some plugins
Diffstat (limited to 'doc/shortcuts.txt')
-rw-r--r--doc/shortcuts.txt64
1 files changed, 37 insertions, 27 deletions
diff --git a/doc/shortcuts.txt b/doc/shortcuts.txt
index 9c168f9..4e49e6d 100644
--- a/doc/shortcuts.txt
+++ b/doc/shortcuts.txt
@@ -1,50 +1,60 @@
1leader key = usually set to backslash expects a quick command
2
3
1[normal mode] 4[normal mode]
2f{char} - move cursor to the character {char} 5f{char} = move cursor to the character {char}
3 6
4 7
5[visual mode] - with selected lines 8[visual mode] # with selected lines
6gq - formats text so that it fits in whatever :set textwidth was set 9gq = formats text so that it fits in whatever :set textwidth was set
7iB - select block between curly braces (:help object-select) 10iB = select block between curly braces (:help object-select)
8 11
9 12
10[commands] 13[commands]
11:spell [word] - adds a word to the current dictionary (no mistake any more) 14:spell [word] = adds a word to the current dictionary (no mistake any more)
12:set list - display non printable characters 15:set list = display non printable characters
13:retab - replaces tabs with spaces 16:retab = replaces tabs with spaces
14:set expandtab - in insert mode: replace tab with spaces 17:set expandtab = in insert mode: replace tab with spaces
18:Explore = cli version open file dialog
15 19
16 20
17[navigation] 21[navigation]
18<CTRL-]> - look up the tag under the cursor (help links as well) 22<CTRL-]> = look up the tag under the cursor (help links as well)
19<CTRL-T> - return back from tag under the cursor 23<CTRL-T> = return back from tag under the cursor
24gd = jump to the declaration of the variable under the cursor
20 25
21 26
22[macros] - record and play back a series of vim commands 27[macros] # record and play back a series of vim commands
23qa - start (q) macro recording in register a (can be anything) 28qa = start (q) macro recording in register a (can be anything)
24q - stop macro recording 29q = stop macro recording
25@a - replay macro a 30@a = replay macro a
26:'<,'>normal @a - apply a to every line in the current selection 31:'<,'>normal @a = apply a to every line in the current selection
27 32
28 33
29[marker] 34[marker]
30ma - set marker a-z (a in this case) 35ma = set marker a-z (a in this case)
31'a - go to marker a 36'a = go to marker a
32 37
33 38
34[hotkeys] 39[hotkeys]
35<C-A>, <C-X> - increment, decrement number under the cursor 40<C-A>, <C-X> = increment, decrement number under the cursor
36 41
37 42
38[windows] 43[windows]
39<C-W>v - splits buffer vertically (screen uses |) 44<C-W>v = splits buffer vertically (screen uses |)
40<C-W>s - splits buffer horizontally (same as screen) 45<C-W>s = splits buffer horizontally (same as screen)
41<C-W>w - moves the cursor to the next window and back 46<C-W>w = moves the cursor to the next window and back
42<C-W>[dir] - moves the cursor in that direction (use hjkl or arrow keys) 47<C-W>[dir] = moves the cursor in that direction (use hjkl or arrow keys)
43 48
44 49
45[vimdiff] 50[vimdiff]
46do - get changes from other window into the current 51do = get changes from other window into the current
47dp - put changes from current window into the other 52dp = put changes from current window into the other
48]c - jump to the next change 53]c = jump to the next change
49[c - jump to the prevous change 54[c = jump to the prevous change
50zR - opens all folds (unfold all) 55zR = opens all folds (unfold all)
56
57[vim modeline]
58the last line can be a mode line, which holds settings like tab width:
59
60# vim: noai:ts=2:sw=2 filetype=dosini
..