Rainbow
[my-vim-dotfolder.git] / doc / easytags.txt
blob1b9e78c5bd6f79af3e7266633ef6e00536355eae
1 *easytags.txt*  Automated tag generation and syntax highlighting in Vim
3 Vim has long been my favorite text editor and combined with Exuberant Ctags
4 [1] it has the potential to provide most of what I expect from an integrated
5 development environment [2]. Exuberant Ctags is the latest incarnation of a
6 family of computer programs [3] that scan source code files to create an index
7 of identifiers (tags) and where they are defined. Vim uses this index (a
8 so-called tags file) to enable you to jump to the definition of any identifier
9 using the Control-] (see |CTRL-]|) mapping.
11 When you're familiar with integrated development environments you may
12 recognize this feature as "Go-to definition". One advantage of the combination
13 of Vim and Exuberant Ctags over integrated development environments is that
14 Vim supports syntax highlighting for over 500 file types [4] (!) and Exuberant
15 Ctags can generate tags for over 40 file types [5] as well...
17 There's just one problem: You have to manually keep your tags files up-to-date
18 and this turns out to be a royal pain in the ass! So I set out to write a Vim
19 plug-in that would do this boring work for me. When I finished the plug-in's
20 basic functionality (one automatic command and a call to |system()| later) I
21 became interested in dynamic syntax highlighting, so I added that as well to
22 see if it would work -- surprisingly well I'm happy to report!
24 ===============================================================================
25                                                          *easytags-installation*
26 Installation ~
28 Unzip the most recent ZIP archive [6] file inside your Vim profile directory
29 (usually this is '~/.vim' on UNIX and '%USERPROFILE%\vimfiles' on Windows),
30 restart Vim and execute the command ':helptags ~/.vim/doc' (use ':helptags
31 ~\vimfiles\doc' instead on Windows). Now try it out: Edit any file type
32 supported by Exuberant Ctags and within ten seconds the plug-in should
33 create/update your tags file ('~/.vimtags' on UNIX, '~/_vimtags' on Windows)
34 with the tags defined in the file you just edited! This means that whatever
35 file you're editing in Vim (as long as it's on the local file system), tags
36 will always be available by the time you need them!
38 Additionally if the file you just opened is a C, C++, Objective-C, Java, Lua,
39 Python, PHP, Ruby or Vim source file you should also notice that the function
40 and type names defined in the file have been syntax highlighted.
42 The 'easytags.vim' plug-in is intended to work automatically once it's
43 installed, but if you want to change how it works there are several options
44 you can change and commands you can execute from your own mappings and/or
45 automatic commands. These are all documented below.
47 Note that if the plug-in warns you 'ctags' isn't installed you'll have to
48 download it from its homepage [1], or if you're running Debian/Ubuntu you can
49 install it by executing the following shell command:
51     $ sudo apt-get install exuberant-ctags
53 -------------------------------------------------------------------------------
54                                                  *easytags-a-note-about-windows*
55 A note about Windows ~
57 On Windows the |system()| function used by 'easytags.vim' causes a command
58 prompt window to pop up while Exuberant Ctags is executing. If this bothers
59 you then you can install my shell.vim [7] plug-in which includes a DLL [8]
60 that works around this issue. Once you've installed both plug-ins it should
61 work out of the box! Please let me know if this doesn't work for you.
63 ===============================================================================
64                                                              *easytags-commands*
65 Commands ~
67 -------------------------------------------------------------------------------
68 The *:UpdateTags* command
70 This command executes Exuberant Ctags [1] from inside Vim to update the global
71 tags file defined by |g:easytags_file|. When no arguments are given the tags
72 for the current file are updated, otherwise the arguments are passed on to
73 'ctags'. For example when you execute the Vim command ':UpdateTags -R ~/.vim'
74 (or ':UpdateTags -R ~\vimfiles' on Windows) the plug-in will execute 'ctags -R
75 ~/.vim' for you (with some additional arguments, see the troubleshooting
76 section "|:HighlightTags| only works for the tags file created by
77 |:UpdateTags|" for more information).
79 When you execute this command like ':UpdateTags!' (including the bang!) then
80 all tags whose files are missing will be filtered from the global tags file.
82 Note that this command will be executed automatically every once in a while,
83 assuming you haven't changed |g:easytags_on_cursorhold|.
85 -------------------------------------------------------------------------------
86 The *:HighlightTags* command
88 When you execute this command while editing one of the supported file types
89 (see above) the relevant tags in the current file are highlighted. The tags to
90 highlight are gathered from all tags files known to Vim (through the |'tags'|
91 option).
93 Note that this command will be executed automatically every once in a while,
94 assuming you haven't changed |g:easytags_on_cursorhold|.
96 ===============================================================================
97                                                               *easytags-options*
98 Options ~
100 The easytags plug-in should work out of the box but if you don't like the
101 default configuration you can change how it works by setting the variables
102 documented below. Most of these variables can also be changed for specific
103 files by setting a buffer local variable instead of the global variable. For
104 example to disable automatic highlighting (enabled by default) only in Python
105 files you can add the following line to your |vimrc| script:
107     :autocmd FileType python let b:easytags_auto_highlight = 0
109 Note that buffer local variables always override global variables, so if you
110 want to undo this for a specific file you have to use |:unlet|:
112     :unlet b:easytags_auto_highlight
114 -------------------------------------------------------------------------------
115 The *g:easytags_cmd* option
117 The plug-in will try to determine the location where Exuberant Ctags is
118 installed on its own but this might not always work because any given
119 executable named 'ctags' in your '$PATH' might not in fact be Exuberant Ctags
120 but some older, more primitive 'ctags' implementation which doesn't support
121 the same command line options and thus breaks the easytags plug-in. If this is
122 the case you can set the global variable |g:easytags_cmd| to the location
123 where you've installed Exuberant Ctags, e.g.:
125     :let g:easytags_cmd = '/usr/local/bin/ctags'
127 -------------------------------------------------------------------------------
128 The *g:easytags_file* option
130 As mentioned above the plug-in will store your tags in '~/.vimtags' on UNIX
131 and '~/_vimtags' on Windows. To change the location of this file, set the
132 global variable |g:easytags_file|, e.g.:
134     :let g:easytags_file = '~/.vim/tags'
136 A leading '~' in the |g:easytags_file| variable is expanded to your current
137 home directory ('$HOME' on UNIX, '%USERPROFILE%' on Windows).
139 -------------------------------------------------------------------------------
140 The *g:easytags_dynamic_files* option
142 By default |:UpdateTags| only writes to the global tags file, but it can be
143 configured to look for project specific tags files by adding the following
144 lines to your |vimrc| script:
146     :set tags=./tags;
147     :let g:easytags_dynamic_files = 1
149 You can change the name of the tags file, the important thing is that it's
150 relative to your working directory or the buffer (using a leading './'). When
151 |g:easytags_dynamic_files| is set to 1 the easytags plug-in will write to the
152 first existing tags file seen by Vim (based on the |'tags'| option). In other
153 words: If a project specific tags file is found it will be used, otherwise the
154 plug-in falls back to the global tags file (or a file type specific tags
155 file).
157 If you set |g:easytags_dynamic_files| to 2 the easytags plug-in will
158 automatically create project specific tags based on the first name in the
159 'tags' option. This disables the global tags file and file type specific tags
160 files.
162 The |'tags'| option is reevaluated each time the plug-in runs, so which tags
163 file is selected can differ depending on the buffer and working directory.
165 -------------------------------------------------------------------------------
166 The *g:easytags_by_filetype* option
168 By default all tags are stored in a global tags file. When the tags file grows
169 beyond a certain size Vim will be slowed down by the easytags plug-in because
170 it has to read and process a large number of tags very frequently.
172 To avoid this problem you can set |g:easytags_by_filetype| to the path of an
173 existing directory. The easytags plug-in will create separate tags files for
174 each file type in the configured directory. These tags files are automatically
175 registered by the easytags plug-in when the file type of a buffer is set.
177 Note that the |g:easytags_dynamic_files| option takes precedence over this
178 option.
180 If you already have a global tags file you can create file type specific tags
181 files from the global tags file using the command ':TagsByFileType'.
183 -------------------------------------------------------------------------------
184 The *g:easytags_always_enabled* option
186 By default the plug-in automatically generates and highlights tags when you
187 stop typing for a few seconds (this works using the |CursorHold| automatic
188 command). This means that when you edit a file, the dynamic highlighting won't
189 appear until you pause for a moment. If you don't like this you can configure
190 the plug-in to always enable dynamic highlighting:
192     :let g:easytags_always_enabled = 1
194 Be warned that after setting this option you'll probably notice why it's
195 disabled by default: Every time you edit a file in Vim, the plug-in will first
196 run Exuberant Ctags and then highlight the tags, and this slows Vim down quite
197 a lot. I have some ideas on how to improve this latency by running Exuberant
198 Ctags in the background so stay tuned!
200 Note: If you change this option it won't apply until you restart Vim, so
201 you'll have to set this option in your |vimrc| script.
203 -------------------------------------------------------------------------------
204 The *g:easytags_on_cursorhold* option
206 As I explained above the plug-in by default doesn't update or highlight your
207 tags until you stop typing for a moment. The plug-in tries hard to do the
208 least amount of work possible in this break but it might still interrupt your
209 workflow. If it does you can disable the periodic update:
211     :let g:easytags_on_cursorhold = 0
213 Note: Like the |g:easytags_always_enabled| option, if you change this option
214 it won't apply until you restart Vim, so you'll have to set this option in
215 your |vimrc| script.
217 -------------------------------------------------------------------------------
218 The *g:easytags_updatetime_min* option
220 Vim has a setting which influences how often the plug-in is automatically
221 executed. When this setting is too low, the plug-in can break. For this reason
222 the plug-in warns you when |'updatetime'| is lower than 4000 milliseconds. If
223 you really want the plug-in to be executed more than once every 4 seconds
224 (without a warning) you can lower the minimum acceptable updatetime by setting
225 this option (number of milliseconds).
227 -------------------------------------------------------------------------------
228 The *g:easytags_updatetime_autodisable* option
230 Other plug-ins may lower the |'updatetime'| value in certain contexts, e.g.
231 insert mode in the case of the neocomplcache [9] plug-in. By setting this
232 option to 1 (true) you can configure the easytags plug-in so that it doesn't
233 give warnings about the updatetime option but instead skip updating and
234 highlighting while the updatetime is set too low. When the updatetime is
235 restored to a reasonable value the plug-in resumes.
237 -------------------------------------------------------------------------------
238 The *g:easytags_auto_update* option
240 By default the plug-in automatically updates and highlights your tags when you
241 stop typing for a moment. If you want to disable automatic updating while
242 keeping automatic highlighting enabled you can set this option to false:
244     :let g:easytags_auto_update = 0
246 -------------------------------------------------------------------------------
247 The *g:easytags_auto_highlight* option
249 By default the plug-in automatically updates and highlights your tags when you
250 stop typing for a moment. If you want to disable automatic highlighting while
251 keeping automatic updating enabled you can set this option to false:
253     :let g:easytags_auto_highlight = 0
255 -------------------------------------------------------------------------------
256 The *g:easytags_autorecurse* option
258 When the |:UpdateTags| command is executed automatically or without arguments,
259 it defaults to updating just the tags for the current file. If you'd rather
260 have it recursively scan everything below the directory of the current file
261 then set this option to true (1):
263     :let g:easytags_autorecurse = 1
265 You have to explicitly enable this option because it should only be used while
266 navigating around small directory trees. Imagine always having this option
267 enabled and then having to edit a file in e.g. the root of your home
268 directory: The 'easytags.vim' plug-in would freeze Vim for a long time while
269 you'd have to wait for Exuberant Ctags to scan thousands of files...
271 Note that when you enable this option the 'easytags.vim' plug-in might ignore
272 other options like |g:easytags_resolve_links|. This is an implementation
273 detail which I intend to fix.
275 -------------------------------------------------------------------------------
276 The *g:easytags_include_members* option
278 Exuberant Ctags knows how to generate tags for struct/class members in C++ and
279 Java source code but doesn't do so by default because it can more than double
280 the size of your tags files, thus taking much longer to read/write the tags
281 file. When you enable the |g:easytags_include_members| option from your |vimrc|
282 script (before the 'easytags.vim' plug-in is loaded):
284     :let g:easytags_include_members = 1
286 Exuberant Ctags will be instructed to include struct/class members using the
287 '--extra=+q' command line argument and the 'easytags.vim' plug-in will
288 highlight them using the 'cMember' highlighting group. Because most color
289 schemes don't distinguish the Identifier and Type (see |group-name|)
290 highlighting groups all members will now probably look like type definitions.
291 You can change that by executing either of the following Vim commands (from
292 your vimrc script, a file type plug-in, etc.):
294     " If you like one of the existing styles you can link them:
295     highlight link cMember Special
296     
297     " You can also define your own style if you want:
298     highlight cMember gui=italic
300 -------------------------------------------------------------------------------
301 The *g:easytags_resolve_links* option
303 UNIX has symbolic links [10] and hard links [11], both of which conflict with
304 the concept of having one unique location for every identifier. With regards
305 to hard links there's not much anyone can do, but because I use symbolic links
306 quite a lot I've added this option. It's disabled by default since it has a
307 small performance impact and might not do what unknowing users expect it to:
308 When you enable this option the plug-in will resolve symbolic links in
309 pathnames, which means your tags file will only contain entries with canonical
310 pathnames [12]. To enable this option (which I strongly suggest doing when you
311 run UNIX and use symbolic links) execute the following Vim command:
313     :let g:easytags_resolve_links = 1
315 -------------------------------------------------------------------------------
316 The *g:easytags_suppress_ctags_warning* option
318 If this is set and not false, it will suppress the warning on startup if ctags
319 is not found or not recent enough.
321     :let g:easytags_suppress_ctags_warning = 1
323 ===============================================================================
324                               *easytags-faster-syntax-highlighting-using-python*
325 Faster syntax highlighting using Python ~
327 The Vim script implementation of dynamic syntax highlighting is quite slow on
328 large tags files. When the Python Interface to Vim is enabled the easytags
329 plug-in will therefor automatically use a Python script that performs dynamic
330 syntax highlighting about twice as fast as the Vim script implementation. The
331 following options are available to change the default configuration.
333 -------------------------------------------------------------------------------
334 The *g:easytags_python_enabled* option
336 To disable the Python implementation of dynamic syntax highlighting you can
337 set this option to false (0).
339 -------------------------------------------------------------------------------
340 The *g:easytags_python_script* option
342 This option defines the pathname of the script that contains the Python
343 implementation of dynamic syntax highlighting.
345 ===============================================================================
346 How to customize the highlighting colors? ~
348 The easytags plug-in defines new highlighting groups for dynamically
349 highlighted tags. These groups are linked to Vim's default groups so that
350 they're colored out of the box, but if you want you can change the styles. To
351 do so use a 'highlight' command such as the ones given a few paragraphs back.
352 Of course you'll need to change the group name. Here are the group names used
353 by the easytags plug-in:
355  - Lua: 'luaFuncTag'
357  - C: 'cTypeTag', 'cEnumTag', 'cPreProcTag', 'cFunctionTag', 'cMemberTag'
359  - PHP: 'phpFunctionsTag', 'phpClassesTag'
361  - Vim: 'vimAutoGroupTag', 'vimCommandTag', 'vimFuncNameTag',
362    'vimScriptFuncNameTag'
364  - Python: 'pythonFunctionTag', 'pythonMethodTag', 'pythonClassTag'
366  - Java: 'javaClassTag', 'javaMethodTag'
368  - C#: 'csClassOrStructTag', 'csMethodTag'
370  - Ruby: 'rubyModuleNameTag', 'rubyClassNameTag', 'rubyMethodNameTag'
372 As you can see each of these names ends in 'Tag' to avoid conflicts with the
373 syntax modes shipped with Vim. And about the singular/plural confusion: I've
374 tried to match the existing highlighting groups defined by popular syntax
375 modes (except of course for the 'Tag' suffix).
377 ===============================================================================
378 Passing custom command line arguments to Exuberant Ctags ~
380 You may want to run Exuberant Ctags with specific command line options, for
381 example the code_complete [13] plug-in requires the signature field to be
382 present. To do this you can create a configuration file for Exuberant Ctags,
383 e.g. '~/.ctags' on UNIX or '%USERPROFILE%\ctags.cnf' on Windows. The file
384 should contain one command line option per line. See the Exuberant Ctags
385 manual [14] for details.
387 ===============================================================================
388                                                       *easytags-troubleshooting*
389 Troubleshooting ~
391 -------------------------------------------------------------------------------
392 |:HighlightTags| only works for the tags file created by |:UpdateTags| ~
394 If you want to create tags files and have their tags highlighted by the
395 'easytags.vim' plug-in then you'll have to create the tags file with certain
396 arguments to Exuberant Ctags:
398     $ ctags --fields=+l --c-kinds=+p --c++-kinds=+p ...
400 The '--fields=+l' argument makes sure that Exuberant Ctags includes a
401 'language:...' property with each entry in the tags file. This is required by
402 the |:HighlightTags| command so it can filter tags by their file type. The
403 other two arguments make sure Exuberant Ctags generates tags for function
404 prototypes in C/C++ source code.
406 If you have the |g:easytags_include_members| option enabled (its off by
407 default) then you'll also need to add the '--extra=+q' argument so that
408 Exuberant Ctags generates tags for structure/class members.
410 -------------------------------------------------------------------------------
411 The plug-in complains that Exuberant Ctags isn't installed ~
413 After a Mac OS X user found out the hard way that the 'ctags' executable isn't
414 always Exuberant Ctags and we spend a few hours debugging the problem I added
415 proper version detection: The plug-in executes 'ctags --version' when Vim is
416 started to verify that Exuberant Ctags 5.5 or newer is installed. If it isn't
417 Vim will show the following message on startup:
419     easytags.vim: Plug-in not loaded because Exuberant Ctags isn't installed!
420     Please download & install Exuberant Ctags from http://ctags.sf.net
422 If the installed Exuberant Ctags version is too old the plug-in will complain:
424     easytags.vim: Plug-in not loaded because Exuberant Ctags 5.5
425     or newer is required while you have version %s installed!
427 If you have the right version of Exuberant Ctags installed but the plug-in
428 still complains, try executing the following command from inside Vim:
430     :!which ctags
432 If this doesn't print the location where you installed Exuberant Ctags it
433 means your system already had a 'ctags' executable but it isn't compatible
434 with Exuberant Ctags 5.5 and you'll need to set the |g:easytags_cmd| option
435 (see above) so the plug-in knows which 'ctags' to run.
437 -------------------------------------------------------------------------------
438 Vim locks up while the plug-in is running ~
440 Once or twice now in several years I've experienced Exuberant Ctags getting
441 into an infinite loop when given garbage input. In my case this happened by
442 accident a few days ago :-|. Because my plug-in executes 'ctags' in the
443 foreground this will block Vim indefinitely! If this happens you might be able
444 to kill 'ctags' by pressing Control-C (see |CTRL-C|) but if that doesn't work
445 you can also kill it without stopping Vim using a task manager or the 'pkill'
446 command (available on most UNIX systems):
448     $ pkill -KILL ctags
450 If Vim seems very slow and you suspect this plug-in might be the one to blame,
451 increase Vim's verbosity level:
453     :set vbs=1
455 Every time the plug-in executes it will time how long the execution takes and
456 add the results to Vim's message history, which you can view by executing the
457 |:messages| command.
459 -------------------------------------------------------------------------------
460 Failed to highlight tags because pattern is too big! ~
462 If the 'easytags.vim' plug-in fails to highlight your tags and the error
463 message mentions that the pattern is too big, your tags file has grown too
464 large for Vim to be able to highlight all tagged identifiers! I've had this
465 happen to me with 50 KB patterns because I added most of the headers in
466 '/usr/include/' to my tags file. Internally Vim raises the error |E339|: Pattern
467 too long and unfortunately the only way to avoid this problem once it occurs
468 is to reduce the number of tagged identifiers...
470 In my case the solution was to move most of the tags from '/usr/include/' over
471 to project specific tags files which are automatically loaded by Vim when I
472 edit files in different projects because I've set the |'tags'| option as
473 follows:
475     :set tags=./.tags;,~/.vimtags
477 Once you've executed the above command, Vim will automatically look for a file
478 named '.tags' in the directory of the current file. Because of the ';' Vim
479 also recurses upwards so that you can nest files arbitrarily deep under your
480 project directories.
482 -------------------------------------------------------------------------------
483 The plug-in doesn't seem to work in Cygwin ~
485 If you want to use the plug-in with Vim under Cygwin [15], you need to have
486 the Cygwin version of Ctags installed instead of the Windows version (thanks
487 to Alex Zuroff for reporting this!).
489 ===============================================================================
490                                                               *easytags-contact*
491 Contact ~
493 If you have questions, bug reports, suggestions, etc. the author can be
494 contacted at peter@peterodding.com. The latest version is available at
495 http://peterodding.com/code/vim/easytags/ and http://github.com/xolox/vim-easytags.
496 If you like this plug-in please vote for it on Vim Online [16].
498 ===============================================================================
499                                                               *easytags-license*
500 License ~
502 This software is licensed under the MIT license [17]. Copyright 2011 Peter
503 Odding <peter@peterodding.com>.
505 ===============================================================================
506                                                            *easytags-references*
507 References ~
509 [1] http://ctags.sourceforge.net/
510 [2] http://en.wikipedia.org/wiki/Integrated_development_environment
511 [3] http://en.wikipedia.org/wiki/Ctags
512 [4] http://ftp.vim.org/vim/runtime/syntax/
513 [5] http://ctags.sourceforge.net/languages.html
514 [6] http://peterodding.com/code/vim/downloads/easytags.zip
515 [7] http://peterodding.com/code/vim/shell/
516 [8] http://en.wikipedia.org/wiki/Dynamic-link_library
517 [9] http://www.vim.org/scripts/script.php?script_id=2620
518 [10] http://en.wikipedia.org/wiki/Symbolic_link
519 [11] http://en.wikipedia.org/wiki/Hard_link
520 [12] http://en.wikipedia.org/wiki/Canonicalization
521 [13] http://www.vim.org/scripts/script.php?script_id=1764
522 [14] http://ctags.sourceforge.net/ctags.html#FILES
523 [15] http://en.wikipedia.org/wiki/Cygwin
524 [16] http://www.vim.org/scripts/script.php?script_id=3114
525 [17] http://en.wikipedia.org/wiki/MIT_License
527 vim: ft=help