aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMax Christian Pohle2017-02-28 22:14:43 +0100
committerMax Christian Pohle2017-02-28 22:14:43 +0100
commitf53a1526417493746d771f6243f30ba62ef7438c (patch)
treed897f141265c53c5d4f81d5e4df5de501705381d /doc
parent3b7000901a735f880fb5cf70c5d214becfae100d (diff)
downloadvim-f53a1526417493746d771f6243f30ba62ef7438c.tar.bz2
vim-f53a1526417493746d771f6243f30ba62ef7438c.zip
improved xml handling
Diffstat (limited to 'doc')
-rw-r--r--doc/shortcuts.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/shortcuts.txt b/doc/shortcuts.txt
index fd21674..7b5b78b 100644
--- a/doc/shortcuts.txt
+++ b/doc/shortcuts.txt
@@ -66,7 +66,8 @@ notice, that registers get used for both: macro recordings and copying text
66 66
67[marker] 67[marker]
68ma = set marker a-z (a in this case) 68ma = set marker a-z (a in this case)
69'a = go to marker a 69`a = go to marker a (line & column)
70'a = go to marker a (line, first non blank), same as `a^
70 71
71 72
72[hotkeys] 73[hotkeys]
@@ -124,6 +125,10 @@ gn = makes the directory under the cursor the root directory
124a = toggles display of hidden files 125a = toggles display of hidden files
125 126
126 127
128[filetype:css]
129viB:sort = sort inner block by name
130
131
127[vim modeline] 132[vim modeline]
128filetype can have multiple values, like python.django 133filetype can have multiple values, like python.django
129The last line can be a mode line, which holds settings like tab width: 134The last line can be a mode line, which holds settings like tab width:
..