Initial commit
This commit is contained in:
commit
c61393c39b
162 changed files with 5158 additions and 0 deletions
49
static/talks/Vim7_new_features.txt
Normal file
49
static/talks/Vim7_new_features.txt
Normal file
|
@ -0,0 +1,49 @@
|
|||
Undo Branches
|
||||
=======================================
|
||||
:earlier 10m
|
||||
:earlier 2h
|
||||
:later 2h
|
||||
:undolist
|
||||
|
||||
|
||||
|
||||
Tabs
|
||||
=======================================
|
||||
vim -p foo.txt bar.txt
|
||||
gvim -p foo.txt bar.txt
|
||||
:tabnew (neues leeres Tab aufmachen)
|
||||
:tabe /home/tretkowski/foo.txt (Datei in neuem Tab oeffnen)
|
||||
:tabdo %s/foo/bar/g (auf alles Tabs ausfuehren)
|
||||
:tabs (Liste der Tabs)
|
||||
:tabc (schliessen des aktuellen Tabs)
|
||||
:tabn (naechstes Tab)
|
||||
:tabp (vorheriges Tab)
|
||||
:qa
|
||||
|
||||
|
||||
|
||||
Extended Highlighting
|
||||
=======================================
|
||||
:set cursorline
|
||||
:set cursorcolumn
|
||||
|
||||
|
||||
|
||||
Omni/Word Completion
|
||||
=======================================
|
||||
:set completeopt=menu
|
||||
:autocmd FileType python set omnifunc=pythoncomplete#Complete
|
||||
ctrl x, ctrl p
|
||||
ctrl x, ctrl o
|
||||
|
||||
|
||||
|
||||
Spellchecking
|
||||
=======================================
|
||||
:set spelllang=de_de,en_us
|
||||
:autocmd FileType mail set spell
|
||||
]s (naechster Fehler)
|
||||
[s (vorheriger Fehler)
|
||||
zg (hinzufuegen)
|
||||
zw (entfernen)
|
||||
z= oder ctrl x, s (Liste mit moeglichen Verbesserungen anzeigen)
|
Loading…
Add table
Add a link
Reference in a new issue