comparison runtime/doc/syntax.txt @ 7183:ffad29dc7eee

commit https://github.com/vim/vim/commit/a0f849ee40cbea3c889345256786b640b0becca2 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Oct 30 14:37:44 2015 +0100 Update runtime files.
author Christian Brabandt <cb@256bit.org>
date Fri, 30 Oct 2015 14:45:04 +0100
parents 30042ddff503
children 873eae260c97
comparison
equal deleted inserted replaced
7182:c6a1a1ea7c19 7183:ffad29dc7eee
1 *syntax.txt* For Vim version 7.4. Last change: 2015 Sep 29 1 *syntax.txt* For Vim version 7.4. Last change: 2015 Oct 17
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
1079 CPP *cpp.vim* *ft-cpp-syntax* 1079 CPP *cpp.vim* *ft-cpp-syntax*
1080 1080
1081 Most of things are same as |ft-c-syntax|. 1081 Most of things are same as |ft-c-syntax|.
1082 1082
1083 Variable Highlight ~ 1083 Variable Highlight ~
1084 cpp_no_c11 don't highlight C++11 standard items 1084 cpp_no_cpp11 don't highlight C++11 standard items
1085 1085
1086 1086
1087 CSH *csh.vim* *ft-csh-syntax* 1087 CSH *csh.vim* *ft-csh-syntax*
1088 1088
1089 This covers the shell named "csh". Note that on some systems tcsh is actually 1089 This covers the shell named "csh". Note that on some systems tcsh is actually
3246 3246
3247 *g:vimsyn_embed* 3247 *g:vimsyn_embed*
3248 The g:vimsyn_embed option allows users to select what, if any, types of 3248 The g:vimsyn_embed option allows users to select what, if any, types of
3249 embedded script highlighting they wish to have. > 3249 embedded script highlighting they wish to have. >
3250 3250
3251 g:vimsyn_embed == 0 : don't embed any scripts 3251 g:vimsyn_embed == 0 : don't support any embedded scripts
3252 g:vimsyn_embed =~ 'l' : support embedded lua
3252 g:vimsyn_embed =~ 'm' : support embedded mzscheme 3253 g:vimsyn_embed =~ 'm' : support embedded mzscheme
3253 g:vimsyn_embed =~ 'p' : support embedded perl 3254 g:vimsyn_embed =~ 'p' : support embedded perl
3254 g:vimsyn_embed =~ 'P' : support embedded python 3255 g:vimsyn_embed =~ 'P' : support embedded python
3255 g:vimsyn_embed =~ 'r' : support embedded ruby 3256 g:vimsyn_embed =~ 'r' : support embedded ruby
3256 g:vimsyn_embed =~ 't' : support embedded tcl 3257 g:vimsyn_embed =~ 't' : support embedded tcl
3264 Some folding is now supported with syntax/vim.vim: > 3265 Some folding is now supported with syntax/vim.vim: >
3265 3266
3266 g:vimsyn_folding == 0 or doesn't exist: no syntax-based folding 3267 g:vimsyn_folding == 0 or doesn't exist: no syntax-based folding
3267 g:vimsyn_folding =~ 'a' : augroups 3268 g:vimsyn_folding =~ 'a' : augroups
3268 g:vimsyn_folding =~ 'f' : fold functions 3269 g:vimsyn_folding =~ 'f' : fold functions
3270 g:vimsyn_folding =~ 'l' : fold lua script
3269 g:vimsyn_folding =~ 'm' : fold mzscheme script 3271 g:vimsyn_folding =~ 'm' : fold mzscheme script
3270 g:vimsyn_folding =~ 'p' : fold perl script 3272 g:vimsyn_folding =~ 'p' : fold perl script
3271 g:vimsyn_folding =~ 'P' : fold python script 3273 g:vimsyn_folding =~ 'P' : fold python script
3272 g:vimsyn_folding =~ 'r' : fold ruby script 3274 g:vimsyn_folding =~ 'r' : fold ruby script
3273 g:vimsyn_folding =~ 't' : fold tcl script 3275 g:vimsyn_folding =~ 't' : fold tcl script