comparison README.md @ 18:b13e1141aa5c

Fix wording in `README`.
author Ludovic Chabant <ludovic@chabant.com>
date Thu, 21 Aug 2014 13:25:03 -0700
parents ec87439fc784
children 4e1b0253f71a
comparison
equal deleted inserted replaced
17:b73466268844 18:b13e1141aa5c
48 "vim-automatic-ctags", etc.). They all fail on one or more of the requirements 48 "vim-automatic-ctags", etc.). They all fail on one or more of the requirements
49 I set for myself with Autotags: 49 I set for myself with Autotags:
50 50
51 * No other dependency than running Vim: no Python, Ruby, or whatever. 51 * No other dependency than running Vim: no Python, Ruby, or whatever.
52 * Cross-platform: should work on at least Mac and Windows. 52 * Cross-platform: should work on at least Mac and Windows.
53 * Incremental tags generation: don't re-generate the whole project all the 53 * Incremental tags generation: don't re-generate the whole project all the time.
54 time. This may be fine for small projects, but it doesn't scale. 54 This may be fine for small projects, but it doesn't scale.
55 * External process management: if the ctags process is taking a long time, 55 * External process management: if the ctags process is taking a long time, don't
56 don't run another one because I saved the file again. 56 run another one because I saved the file again.
57 * Keep the tag file consistent: don't just append the current file's tags to 57 * Keep the tag file consistent: don't just append the current file's tags to the
58 the tag file, otherwise you will still "see" tags for deleted or renamed 58 tag file, otherwise you will still "see" tags for deleted or renamed classes
59 classes and functions. 59 and functions.
60 * Automatically create the tag file: you open something from a freshly forked 60 * Automatically create the tag file: you open something from a freshly forked
61 project, it should start indexing it automatically, just in Sublime Text or 61 project, it should start indexing it automatically, just like in Sublime Text
62 Visual Studio or any other IDE. 62 or Visual Studio or any other IDE.
63 63
64 I hope Autotags will bring you as much closure as me regarding tag files. I know 64 I hope Autotags will bring you as much closure as me regarding tag files. I know
65 I don't want to think about it, and probably neither do you. 65 I don't want to have to think about it, and probably neither do you.
66 66
67 67
68 [ctrlp]: https://github.com/kien/ctrlp.vim 68 [ctrlp]: https://github.com/kien/ctrlp.vim
69 69