comparison runtime/doc/insert.txt @ 711:1babf94e0b24

updated for version 7.0214
author vimboss
date Sat, 04 Mar 2006 21:49:37 +0000
parents 8a99b25de218
children 0f9f4761ad9c
comparison
equal deleted inserted replaced
710:8165a037200b 711:1babf94e0b24
1 *insert.txt* For Vim version 7.0aa. Last change: 2006 Mar 02 1 *insert.txt* For Vim version 7.0aa. Last change: 2006 Mar 04
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
1140 1140
1141 Completion of C code requires a tags file. You should use Exuberant ctags, 1141 Completion of C code requires a tags file. You should use Exuberant ctags,
1142 because it adds extra information that is needed for completion. You can find 1142 because it adds extra information that is needed for completion. You can find
1143 it here: http://ctags.sourceforge.net/ 1143 it here: http://ctags.sourceforge.net/
1144 For version 5.5.4 you should add a patch that adds the "typename:" field: 1144 For version 5.5.4 you should add a patch that adds the "typename:" field:
1145 ftp://ftp.vim.org/pub/vim/unstable/patches/ctags-5.5.4.patch 1145 ftp://ftp.vim.org/pub/vim/unstable/patches/ctags-5.5.4.patch
1146 A compiled .exe for MS-Windows can be found at: 1146 A compiled .exe for MS-Windows can be found at:
1147 http://georgevreilly.com/vim/ctags.html 1147 http://georgevreilly.com/vim/ctags.html
1148 1148
1149 If you want to complete system functions you can do something like this. Use 1149 If you want to complete system functions you can do something like this. Use
1150 ctags to generate a tags file for all the system header files: > 1150 ctags to generate a tags file for all the system header files: >
1151 % ctags -R -f ~/.vim/systags /usr/include /usr/local/include 1151 % ctags -R -f ~/.vim/systags /usr/include /usr/local/include
1152 In your vimrc file add this tags file to the 'tags' option: > 1152 In your vimrc file add this tags file to the 'tags' option: >