Updated runtime files.

This commit is contained in:
Bram Moolenaar
2013-03-07 13:20:54 +01:00
parent 7534221eba
commit 34700a6a15
22 changed files with 1841 additions and 930 deletions

View File

@ -1,4 +1,4 @@
*syntax.txt* For Vim version 7.3. Last change: 2013 Jan 30
*syntax.txt* For Vim version 7.3. Last change: 2013 Mar 01
VIM REFERENCE MANUAL by Bram Moolenaar
@ -999,6 +999,14 @@ comment highlighting, add the following line to your startup file: >
The ColdFusion syntax file is based on the HTML syntax file.
CPP *cpp.vim* *ft-cpp-syntax*
Most of things are same as |ft-c-syntax|.
Variable Highlight ~
cpp_no_c11 don't highlight C++11 standard items
CSH *csh.vim* *ft-csh-syntax*
This covers the shell named "csh". Note that on some systems tcsh is actually
@ -2440,24 +2448,33 @@ Pascal. Use this if you don't use assembly and Pascal: >
PYTHON *python.vim* *ft-python-syntax*
There are four options to control Python syntax highlighting.
There are six options to control Python syntax highlighting.
For highlighted numbers: >
:let python_highlight_numbers = 1
:let python_no_number_highlight = 1
For highlighted builtin functions: >
:let python_highlight_builtins = 1
:let python_no_builtin_highlight = 1
For highlighted standard exceptions: >
:let python_highlight_exceptions = 1
:let python_no_exception_highlight = 1
For highlighted doctests and code inside: >
:let python_no_doctest_highlight = 1
or >
:let python_no_doctest_code_highlight = 1
(first option implies second one).
For highlighted trailing whitespace and mix of spaces and tabs: >
:let python_highlight_space_errors = 1
:let python_space_error_highlight = 1
If you want all possible Python highlighting (the same as setting the
preceding three options): >
preceding last option and unsetting all other ones): >
:let python_highlight_all = 1
Note: only existence of these options matter, not their value. You can replace
1 above with anything.
QUAKE *quake.vim* *ft-quake-syntax*