diff options
author | Karl Berry <karl@freefriends.org> | 2012-02-13 01:16:24 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2012-02-13 01:16:24 +0000 |
commit | 86977875bd92696fb5822fedcf7ab75494fb40a5 (patch) | |
tree | 92ba24296862b65b46007deaefe398a084b391b5 /Master/texmf-dist/doc | |
parent | efd43becf184f97c6fc7e1193066d04240315e8e (diff) |
context-vim (12feb12)
git-svn-id: svn://tug.org/texlive/trunk@25382 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc')
-rw-r--r-- | Master/texmf-dist/doc/context/third/vim/vim.txt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/context/third/vim/vim.txt b/Master/texmf-dist/doc/context/third/vim/vim.txt index 8bdf5ea0afb..962495811ec 100644 --- a/Master/texmf-dist/doc/context/third/vim/vim.txt +++ b/Master/texmf-dist/doc/context/third/vim/vim.txt @@ -478,6 +478,30 @@ To disable loading of vimrc file, use The default is not to use any vimrc file. +A vimrc file gets loaded before syntax highlighting is enabled. If you want to +override the default syntax highlighting scheme, add the appropriate `syn ...` +commands to a vimrc file, and source that usign + + \definevimtyping + [...] + [... + extras=<name of vimrc file>, + ...] + +For example, suppose you are using a C++ library that defines `uDouble` as a +keyword, so you want to highlight it in your code. Use + + \startvimrc[name=cpp_extras] + syn keyword Type uDouble + \stopvimrc + + \definevimtyping + [cpp] + [ + syntax=cpp, + extras=cpp_extras, + ] + Messages and Tracing -------------------- |