Change default value of g:vimtex_syntax_minted
This commit is contained in:
parent
0686d92631
commit
47ac958f76
@ -63,28 +63,7 @@ let b:current_syntax = 'tex'
|
|||||||
|
|
||||||
" }}}1
|
" }}}1
|
||||||
" {{{1 Nested syntax highlighting for minted
|
" {{{1 Nested syntax highlighting for minted
|
||||||
let s:minted = get(g:, 'vimtex_syntax_minted', [
|
for entry in get(g:, 'vimtex_syntax_minted', [])
|
||||||
\ {
|
|
||||||
\ 'lang' : 'c',
|
|
||||||
\ },
|
|
||||||
\ {
|
|
||||||
\ 'lang' : 'cpp',
|
|
||||||
\ 'environments' : ['cppcode', 'cppcode_test'],
|
|
||||||
\ },
|
|
||||||
\ {
|
|
||||||
\ 'lang' : 'csharp',
|
|
||||||
\ 'syntax' : 'cs'
|
|
||||||
\ },
|
|
||||||
\ {
|
|
||||||
\ 'lang' : 'python',
|
|
||||||
\ 'ignore' : [
|
|
||||||
\ 'pythonEscape',
|
|
||||||
\ 'pythonBEscape',
|
|
||||||
\ ],
|
|
||||||
\ }
|
|
||||||
\])
|
|
||||||
|
|
||||||
for entry in s:minted
|
|
||||||
let lang = entry.lang
|
let lang = entry.lang
|
||||||
let syntax = get(entry, 'syntax', lang)
|
let syntax = get(entry, 'syntax', lang)
|
||||||
|
|
||||||
|
@ -770,8 +770,30 @@ Options~
|
|||||||
the syntax file. The `ignored` entry is also optional, and is used to name
|
the syntax file. The `ignored` entry is also optional, and is used to name
|
||||||
syntax groups to ignore in the minted region.
|
syntax groups to ignore in the minted region.
|
||||||
|
|
||||||
Default value:
|
Default value: []
|
||||||
Please see `VIMTEX/after/syntax/tex.vim` for the default value.
|
|
||||||
|
Example for some languages: >
|
||||||
|
|
||||||
|
let g:vimtex_syntax_minted = [
|
||||||
|
\ {
|
||||||
|
\ 'lang' : 'c',
|
||||||
|
\ },
|
||||||
|
\ {
|
||||||
|
\ 'lang' : 'cpp',
|
||||||
|
\ 'environments' : ['cppcode', 'cppcode_test'],
|
||||||
|
\ },
|
||||||
|
\ {
|
||||||
|
\ 'lang' : 'csharp',
|
||||||
|
\ 'syntax' : 'cs'
|
||||||
|
\ },
|
||||||
|
\ {
|
||||||
|
\ 'lang' : 'python',
|
||||||
|
\ 'ignore' : [
|
||||||
|
\ 'pythonEscape',
|
||||||
|
\ 'pythonBEscape',
|
||||||
|
\ ],
|
||||||
|
\ }
|
||||||
|
\])
|
||||||
|
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
Commands~
|
Commands~
|
||||||
|
Loading…
x
Reference in New Issue
Block a user