diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-03-20 10:48:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-20 10:48:10 +0100 |
commit | 75157d2572248c330858586fa23649e7acf33416 (patch) | |
tree | c44491c405faf5a32429ead72ddac25465b64f78 /runtime/doc/syntax.txt | |
parent | 54f15a9e47ea69e81ab9053b3ba9514415f592e4 (diff) | |
download | rneovim-75157d2572248c330858586fa23649e7acf33416.tar.gz rneovim-75157d2572248c330858586fa23649e7acf33416.tar.bz2 rneovim-75157d2572248c330858586fa23649e7acf33416.zip |
vim-patch:47c532e2bc55 (#17780)
Update runtime files
https://github.com/vim/vim/commit/47c532e2bc55e8a48f7f47e1fae1ed30144f2fa1
Diffstat (limited to 'runtime/doc/syntax.txt')
-rw-r--r-- | runtime/doc/syntax.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt index 0ff31e81ab..2af4ec1549 100644 --- a/runtime/doc/syntax.txt +++ b/runtime/doc/syntax.txt @@ -5363,11 +5363,12 @@ WARNING: The longer the tags file, the slower this will be, and the more memory Vim will consume. Only highlighting typedefs, unions and structs can be done too. For this you -must use Exuberant ctags (found at http://ctags.sf.net). +must use Universal Ctags (found at https://ctags.io) or Exuberant ctags (found +at http://ctags.sf.net). Put these lines in your Makefile: -# Make a highlight file for types. Requires Exuberant ctags and awk +# Make a highlight file for types. Requires Universal/Exuberant ctags and awk types: types.vim types.vim: *.[ch] ctags --c-kinds=gstu -o- *.[ch] |\ |