This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
soft:others:vim:start [2009/06/18 20:14] szymon.kulis created |
soft:others:vim:start [2019/03/08 14:08] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== VIM ====== | ====== VIM ====== | ||
* [[http://www.cs.cmu.edu/~maverick/VimColorSchemeTest/index-c.html | Vim Color Schemes ]] | * [[http://www.cs.cmu.edu/~maverick/VimColorSchemeTest/index-c.html | Vim Color Schemes ]] | ||
+ | * ctags: http://ctags.sourceforge.net/ | ||
+ | * Generowanie tagow: | ||
+ | <code> | ||
+ | ./katalog_zrodlowy/ctags.exe -R | ||
+ | Do pliku ~/.vimrc (linux) ~/_vimrc (windows) dodaj: | ||
+ | :set tags=./tags | ||
+ | </code> | ||
+ | * Idz do tagu: ''CTRL-]'' | ||
+ | * Wroc: ''CTRL-T lub CTRL-O'' | ||
+ | * Help: '':h ctags'' | ||
+ | |||
+ | * Kolorowanie skladni. Bardzo duzo roznych przykladow: http://www.cs.cmu.edu/~maverick/VimColorSchemeTest/index-c.html | ||
+ | <code> | ||
+ | W vimie: | ||
+ | Skopiuj swoj plik koloru do ~/vimfiles/colors | ||
+ | Do pliku ~/.vimrc (linux) ~/_vimrc (windows) dodaj: | ||
+ | :syntax on | ||
+ | :color <nazwa_koloru> | ||
+ | </code> | ||
+ | |||
+ | * Doc, tips, etc: | ||
+ | * http://vim.wikia.com/wiki/Main_Page | ||
+ | * http://www.rayninfo.co.uk/vimtips.html | ||
+ | * http://www.dc.turkuamk.fi/docs/soft/vim/vim.html | ||
+ | * http://www.viemu.com/a_vi_vim_graphical_cheat_sheet_tutorial.html | ||