mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-08 19:43:52 -05:00
Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
be092d6f43 | ||
|
|
fb7cf8a9ab | ||
|
|
19a69cf77d | ||
|
|
4f7a4036eb | ||
|
|
0ff5d451b0 | ||
|
|
49840b1893 | ||
|
|
2dc954d6fa | ||
|
|
2369cd5d22 | ||
|
|
46affb6153 | ||
|
|
a4cc3f64f9 | ||
|
|
2fe310256e | ||
|
|
2e1a980632 | ||
|
|
cecfb5dd10 | ||
|
|
a4a9481d37 | ||
|
|
5e5d127eb8 | ||
|
|
002573265a |
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@@ -14,7 +14,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
sudo add-apt-repository ppa:jonathonf/vim -y
|
sudo add-apt-repository ppa:jonathonf/vim -y
|
||||||
sudo apt-get update -q
|
sudo apt-get update -q
|
||||||
sudo apt-get install -y vim
|
sudo apt-get install -y vim expect
|
||||||
vim --version
|
vim --version
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ A collection of language packs for Vim.
|
|||||||
> One to rule them all, one to find them, one to bring them all and in the darkness bind them.
|
> One to rule them all, one to find them, one to bring them all and in the darkness bind them.
|
||||||
|
|
||||||
- It **won't affect your startup time**, as scripts are loaded only on demand\*.
|
- It **won't affect your startup time**, as scripts are loaded only on demand\*.
|
||||||
- It **installs and updates 120+ times faster** than the <!--Package Count-->193<!--/Package Count--> packages it consists of.
|
- It **installs and updates 120+ times faster** than the <!--Package Count-->194<!--/Package Count--> packages it consists of.
|
||||||
- It is more secure because scripts loaded for all extensions are generated by vim-polyglot (ftdetect).
|
- It is more secure because scripts loaded for all extensions are generated by vim-polyglot (ftdetect).
|
||||||
- Solid syntax and indentation support (other features skipped). Only the best language packs.
|
- Solid syntax and indentation support (other features skipped). Only the best language packs.
|
||||||
- All unnecessary files are ignored (like enormous documentation from php support).
|
- All unnecessary files are ignored (like enormous documentation from php support).
|
||||||
@@ -118,6 +118,7 @@ If you need full functionality of any plugin, please use it directly with your p
|
|||||||
- [go](https://github.com/fatih/vim-go)
|
- [go](https://github.com/fatih/vim-go)
|
||||||
- [gradle](https://github.com/tfnico/vim-gradle)
|
- [gradle](https://github.com/tfnico/vim-gradle)
|
||||||
- [graphql](https://github.com/jparise/vim-graphql)
|
- [graphql](https://github.com/jparise/vim-graphql)
|
||||||
|
- [groovy](https://github.com/vim/vim/tree/master/runtime)
|
||||||
- [grub](https://github.com/vim/vim/tree/master/runtime)
|
- [grub](https://github.com/vim/vim/tree/master/runtime)
|
||||||
- [haml](https://github.com/sheerun/vim-haml)
|
- [haml](https://github.com/sheerun/vim-haml)
|
||||||
- [handlebars](https://github.com/sheerun/vim-mustache-handlebars)
|
- [handlebars](https://github.com/sheerun/vim-mustache-handlebars)
|
||||||
|
|||||||
16
after/ftplugin/javascript-1.vim
Normal file
16
after/ftplugin/javascript-1.vim
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'javascript') == -1
|
||||||
|
|
||||||
|
" Vim filetype plugin file
|
||||||
|
" Language: JavaScript
|
||||||
|
" Maintainer: vim-javascript community
|
||||||
|
" URL: https://github.com/pangloss/vim-javascript
|
||||||
|
|
||||||
|
setlocal iskeyword+=$ suffixesadd+=.js
|
||||||
|
|
||||||
|
if exists('b:undo_ftplugin')
|
||||||
|
let b:undo_ftplugin .= ' | setlocal iskeyword< suffixesadd<'
|
||||||
|
else
|
||||||
|
let b:undo_ftplugin = 'setlocal iskeyword< suffixesadd<'
|
||||||
|
endif
|
||||||
|
|
||||||
|
endif
|
||||||
9
after/ftplugin/javascript-2.vim
Normal file
9
after/ftplugin/javascript-2.vim
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
if !exists('g:polyglot_disabled') || (index(g:polyglot_disabled, 'javascript') == -1 && index(g:polyglot_disabled, 'jsx') == -1)
|
||||||
|
|
||||||
|
if get(g:, 'vim_jsx_pretty_disable_js', 0)
|
||||||
|
finish
|
||||||
|
endif
|
||||||
|
|
||||||
|
source <sfile>:h/jsx.vim
|
||||||
|
|
||||||
|
endif
|
||||||
@@ -1,51 +1,3 @@
|
|||||||
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'javascript') == -1
|
" Polyglot metafile
|
||||||
|
source <sfile>:h/javascript-1.vim
|
||||||
" Vim filetype plugin file
|
source <sfile>:h/javascript-2.vim
|
||||||
" Language: JavaScript
|
|
||||||
" Maintainer: vim-javascript community
|
|
||||||
" URL: https://github.com/pangloss/vim-javascript
|
|
||||||
|
|
||||||
setlocal iskeyword+=$ suffixesadd+=.js
|
|
||||||
|
|
||||||
if exists('b:undo_ftplugin')
|
|
||||||
let b:undo_ftplugin .= ' | setlocal iskeyword< suffixesadd<'
|
|
||||||
else
|
|
||||||
let b:undo_ftplugin = 'setlocal iskeyword< suffixesadd<'
|
|
||||||
endif
|
|
||||||
|
|
||||||
endif
|
|
||||||
if !exists('g:polyglot_disabled') || (index(g:polyglot_disabled, 'javascript') == -1 && index(g:polyglot_disabled, 'jsx') == -1)
|
|
||||||
|
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
||||||
" Vim ftplugin file
|
|
||||||
"
|
|
||||||
" Language: javascript.jsx
|
|
||||||
" Maintainer: MaxMEllon <maxmellon1994@gmail.com>
|
|
||||||
"
|
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
||||||
|
|
||||||
" modified from html.vim
|
|
||||||
" For matchit plugin
|
|
||||||
if exists("loaded_matchit")
|
|
||||||
let b:match_ignorecase = 0
|
|
||||||
let b:match_words = '(:),\[:\],{:},<:>,' .
|
|
||||||
\ '<\@<=\([^/][^ \t>]*\)[^>]*\%(>\|$\):<\@<=/\1>'
|
|
||||||
endif
|
|
||||||
|
|
||||||
" For andymass/vim-matchup plugin
|
|
||||||
if exists("loaded_matchup")
|
|
||||||
setlocal matchpairs=(:),{:},[:],<:>
|
|
||||||
let b:match_words = '<\@<=\([^/][^ \t>]*\)\g{hlend}[^>]*\%(/\@<!>\|$\):<\@<=/\1>'
|
|
||||||
let b:match_skip = 's:comment\|string'
|
|
||||||
endif
|
|
||||||
|
|
||||||
let b:jsx_pretty_old_cms = &l:commentstring
|
|
||||||
|
|
||||||
augroup jsx_comment
|
|
||||||
autocmd! CursorMoved <buffer>
|
|
||||||
autocmd CursorMoved <buffer> call jsx_pretty#comment#update_commentstring(b:jsx_pretty_old_cms)
|
|
||||||
augroup end
|
|
||||||
|
|
||||||
setlocal suffixesadd+=.jsx
|
|
||||||
|
|
||||||
endif
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
if !exists('g:polyglot_disabled') || (index(g:polyglot_disabled, 'javascript') == -1 && index(g:polyglot_disabled, 'jsx') == -1)
|
if !exists('g:polyglot_disabled') || (index(g:polyglot_disabled, 'javascript') == -1 && index(g:polyglot_disabled, 'jsx') == -1)
|
||||||
|
|
||||||
source <sfile>:h/javascript.vim
|
source <sfile>:h/jsx.vim
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|||||||
35
after/ftplugin/jsx.vim
Normal file
35
after/ftplugin/jsx.vim
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
if !exists('g:polyglot_disabled') || (index(g:polyglot_disabled, 'javascript') == -1 && index(g:polyglot_disabled, 'jsx') == -1)
|
||||||
|
|
||||||
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
|
" Vim ftplugin file
|
||||||
|
"
|
||||||
|
" Language: javascript.jsx
|
||||||
|
" Maintainer: MaxMEllon <maxmellon1994@gmail.com>
|
||||||
|
"
|
||||||
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
|
|
||||||
|
" modified from html.vim
|
||||||
|
" For matchit plugin
|
||||||
|
if exists("loaded_matchit")
|
||||||
|
let b:match_ignorecase = 0
|
||||||
|
let b:match_words = '(:),\[:\],{:},<:>,' .
|
||||||
|
\ '<\@<=\([^/][^ \t>]*\)[^>]*\%(>\|$\):<\@<=/\1>'
|
||||||
|
endif
|
||||||
|
|
||||||
|
" For andymass/vim-matchup plugin
|
||||||
|
if exists("loaded_matchup")
|
||||||
|
setlocal matchpairs=(:),{:},[:],<:>
|
||||||
|
let b:match_words = '<\@<=\([^/][^ \t>]*\)\g{hlend}[^>]*\%(/\@<!>\|$\):<\@<=/\1>'
|
||||||
|
let b:match_skip = 's:comment\|string'
|
||||||
|
endif
|
||||||
|
|
||||||
|
let b:jsx_pretty_old_cms = &l:commentstring
|
||||||
|
|
||||||
|
augroup jsx_comment
|
||||||
|
autocmd! CursorMoved <buffer>
|
||||||
|
autocmd CursorMoved <buffer> call jsx_pretty#comment#update_commentstring(b:jsx_pretty_old_cms)
|
||||||
|
augroup end
|
||||||
|
|
||||||
|
setlocal suffixesadd+=.jsx
|
||||||
|
|
||||||
|
endif
|
||||||
@@ -1,80 +1,9 @@
|
|||||||
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'graphql') == -1
|
if !exists('g:polyglot_disabled') || (index(g:polyglot_disabled, 'javascript') == -1 && index(g:polyglot_disabled, 'jsx') == -1)
|
||||||
|
|
||||||
" Copyright (c) 2016-2020 Jon Parise <jon@indelible.org>
|
if get(g:, 'vim_jsx_pretty_disable_js', 0)
|
||||||
"
|
|
||||||
" Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
" of this software and associated documentation files (the "Software"), to
|
|
||||||
" deal in the Software without restriction, including without limitation the
|
|
||||||
" rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
||||||
" sell copies of the Software, and to permit persons to whom the Software is
|
|
||||||
" furnished to do so, subject to the following conditions:
|
|
||||||
"
|
|
||||||
" The above copyright notice and this permission notice shall be included in
|
|
||||||
" all copies or substantial portions of the Software.
|
|
||||||
"
|
|
||||||
" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
" AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
" LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
" FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
||||||
" IN THE SOFTWARE.
|
|
||||||
"
|
|
||||||
" Language: GraphQL
|
|
||||||
" Maintainer: Jon Parise <jon@indelible.org>
|
|
||||||
|
|
||||||
runtime! indent/graphql.vim
|
|
||||||
|
|
||||||
" Don't redefine our function and also require the standard Javascript indent
|
|
||||||
" function to exist.
|
|
||||||
if exists('*GetJavascriptGraphQLIndent') || !exists('*GetJavascriptIndent')
|
|
||||||
finish
|
finish
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" Set the indentexpr with our own version that will call GetGraphQLIndent when
|
source <sfile>:h/jsx.vim
|
||||||
" we're inside of a GraphQL string and otherwise defer to GetJavascriptIndent.
|
|
||||||
setlocal indentexpr=GetJavascriptGraphQLIndent()
|
|
||||||
|
|
||||||
function GetJavascriptGraphQLIndent()
|
|
||||||
let l:stack = map(synstack(v:lnum, 1), "synIDattr(v:val,'name')")
|
|
||||||
if !empty(l:stack) && l:stack[0] ==# 'graphqlTemplateString'
|
|
||||||
return GetGraphQLIndent()
|
|
||||||
endif
|
|
||||||
|
|
||||||
return GetJavascriptIndent()
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
endif
|
|
||||||
if !exists('g:polyglot_disabled') || (index(g:polyglot_disabled, 'javascript') == -1 && index(g:polyglot_disabled, 'jsx') == -1)
|
|
||||||
|
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
||||||
" Vim indent file
|
|
||||||
"
|
|
||||||
" Language: javascript.jsx
|
|
||||||
" Maintainer: MaxMellon <maxmellon1994@gmail.com>
|
|
||||||
"
|
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
||||||
|
|
||||||
if exists('b:did_indent')
|
|
||||||
let s:did_indent = b:did_indent
|
|
||||||
unlet b:did_indent
|
|
||||||
endif
|
|
||||||
|
|
||||||
let s:keepcpo = &cpo
|
|
||||||
set cpo&vim
|
|
||||||
|
|
||||||
if exists('s:did_indent')
|
|
||||||
let b:did_indent = s:did_indent
|
|
||||||
endif
|
|
||||||
|
|
||||||
setlocal indentexpr=GetJsxIndent()
|
|
||||||
setlocal indentkeys=0.,0{,0},0),0],0?,0\*,0\,,!^F,:,<:>,o,O,e,<>>,=*/
|
|
||||||
|
|
||||||
function! GetJsxIndent()
|
|
||||||
return jsx_pretty#indent#get(function('GetJavascriptIndent'))
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
let &cpo = s:keepcpo
|
|
||||||
unlet s:keepcpo
|
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
if !exists('g:polyglot_disabled') || (index(g:polyglot_disabled, 'javascript') == -1 && index(g:polyglot_disabled, 'jsx') == -1)
|
if !exists('g:polyglot_disabled') || (index(g:polyglot_disabled, 'javascript') == -1 && index(g:polyglot_disabled, 'jsx') == -1)
|
||||||
|
|
||||||
source <sfile>:h/javascript.vim
|
source <sfile>:h/jsx.vim
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|||||||
33
after/indent/jsx.vim
Normal file
33
after/indent/jsx.vim
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
if !exists('g:polyglot_disabled') || (index(g:polyglot_disabled, 'javascript') == -1 && index(g:polyglot_disabled, 'jsx') == -1)
|
||||||
|
|
||||||
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
|
" Vim indent file
|
||||||
|
"
|
||||||
|
" Language: javascript.jsx
|
||||||
|
" Maintainer: MaxMellon <maxmellon1994@gmail.com>
|
||||||
|
"
|
||||||
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
|
|
||||||
|
if exists('b:did_indent')
|
||||||
|
let s:did_indent = b:did_indent
|
||||||
|
unlet b:did_indent
|
||||||
|
endif
|
||||||
|
|
||||||
|
let s:keepcpo = &cpo
|
||||||
|
set cpo&vim
|
||||||
|
|
||||||
|
if exists('s:did_indent')
|
||||||
|
let b:did_indent = s:did_indent
|
||||||
|
endif
|
||||||
|
|
||||||
|
setlocal indentexpr=GetJsxIndent()
|
||||||
|
setlocal indentkeys=0.,0{,0},0),0],0?,0\*,0\,,!^F,:,<:>,o,O,e,<>>,=*/
|
||||||
|
|
||||||
|
function! GetJsxIndent()
|
||||||
|
return jsx_pretty#indent#get(function('GetJavascriptIndent'))
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
let &cpo = s:keepcpo
|
||||||
|
unlet s:keepcpo
|
||||||
|
|
||||||
|
endif
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'graphql') == -1
|
|
||||||
|
|
||||||
" Copyright (c) 2016-2020 Jon Parise <jon@indelible.org>
|
|
||||||
"
|
|
||||||
" Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
" of this software and associated documentation files (the "Software"), to
|
|
||||||
" deal in the Software without restriction, including without limitation the
|
|
||||||
" rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
||||||
" sell copies of the Software, and to permit persons to whom the Software is
|
|
||||||
" furnished to do so, subject to the following conditions:
|
|
||||||
"
|
|
||||||
" The above copyright notice and this permission notice shall be included in
|
|
||||||
" all copies or substantial portions of the Software.
|
|
||||||
"
|
|
||||||
" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
" AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
" LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
" FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
||||||
" IN THE SOFTWARE.
|
|
||||||
"
|
|
||||||
" Language: GraphQL
|
|
||||||
" Maintainer: Jon Parise <jon@indelible.org>
|
|
||||||
|
|
||||||
runtime! indent/graphql.vim
|
|
||||||
|
|
||||||
" Don't redefine our function and also require the standard Typescript indent
|
|
||||||
" function to exist.
|
|
||||||
if exists('*GetTypescriptGraphQLIndent') || !exists('*GetTypescriptIndent')
|
|
||||||
finish
|
|
||||||
endif
|
|
||||||
|
|
||||||
" Set the indentexpr with our own version that will call GetGraphQLIndent when
|
|
||||||
" we're inside of a GraphQL string and otherwise defer to GetTypescriptIndent.
|
|
||||||
setlocal indentexpr=GetTypescriptGraphQLIndent()
|
|
||||||
|
|
||||||
function GetTypescriptGraphQLIndent()
|
|
||||||
let l:stack = map(synstack(v:lnum, 1), "synIDattr(v:val,'name')")
|
|
||||||
if !empty(l:stack) && l:stack[0] ==# 'graphqlTemplateString'
|
|
||||||
return GetGraphQLIndent()
|
|
||||||
endif
|
|
||||||
|
|
||||||
return GetTypescriptIndent()
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
endif
|
|
||||||
@@ -1,59 +1,9 @@
|
|||||||
if !exists('g:polyglot_disabled') || (index(g:polyglot_disabled, 'javascript') == -1 && index(g:polyglot_disabled, 'jsx') == -1)
|
if !exists('g:polyglot_disabled') || (index(g:polyglot_disabled, 'javascript') == -1 && index(g:polyglot_disabled, 'jsx') == -1)
|
||||||
|
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
if get(g:, 'vim_jsx_pretty_disable_js', 0)
|
||||||
" Vim syntax file
|
finish
|
||||||
"
|
|
||||||
" Language: javascript.jsx
|
|
||||||
" Maintainer: MaxMellon <maxmellon1994@gmail.com>
|
|
||||||
"
|
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
||||||
|
|
||||||
let s:jsx_cpo = &cpo
|
|
||||||
set cpo&vim
|
|
||||||
|
|
||||||
syntax case match
|
|
||||||
|
|
||||||
if exists('b:current_syntax')
|
|
||||||
let s:current_syntax = b:current_syntax
|
|
||||||
unlet b:current_syntax
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if exists('s:current_syntax')
|
source <sfile>:h/jsx.vim
|
||||||
let b:current_syntax = s:current_syntax
|
|
||||||
endif
|
|
||||||
|
|
||||||
if hlexists("jsDebugger") || hlexists("jsNoise") " yuezk/vim-js or pangloss/vim-javascript
|
|
||||||
syntax cluster jsExpression add=jsxRegion
|
|
||||||
elseif hlexists("javascriptOpSymbols") " othree/yajs.vim
|
|
||||||
" refine the javascript line comment
|
|
||||||
syntax region javascriptLineComment start=+//+ end=/$/ contains=@Spell,javascriptCommentTodo extend keepend
|
|
||||||
syntax cluster javascriptValue add=jsxRegion
|
|
||||||
syntax cluster javascriptNoReserved add=jsxElement,jsxTag
|
|
||||||
else " build-in javascript syntax
|
|
||||||
" refine the javascript line comment
|
|
||||||
syntax region javaScriptLineComment start=+//+ end=/$/ contains=@Spell,javascriptCommentTodo extend keepend
|
|
||||||
|
|
||||||
" refine the template string syntax
|
|
||||||
syntax region javaScriptEmbed matchgroup=javaScriptEmbedBraces start=+\${+ end=+}+ contained contains=@javaScriptEmbededExpr
|
|
||||||
|
|
||||||
" add a javaScriptBlock group for build-in syntax
|
|
||||||
syntax region javaScriptBlock
|
|
||||||
\ matchgroup=javaScriptBraces
|
|
||||||
\ start="{"
|
|
||||||
\ end="}"
|
|
||||||
\ contained
|
|
||||||
\ extend
|
|
||||||
\ contains=javaScriptBlock,@javaScriptEmbededExpr,javaScript.*
|
|
||||||
\ fold
|
|
||||||
|
|
||||||
syntax cluster javaScriptEmbededExpr add=jsxRegion,javaScript.*
|
|
||||||
endif
|
|
||||||
|
|
||||||
runtime syntax/jsx_pretty.vim
|
|
||||||
|
|
||||||
let b:current_syntax = 'javascript.jsx'
|
|
||||||
|
|
||||||
let &cpo = s:jsx_cpo
|
|
||||||
unlet s:jsx_cpo
|
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
if !exists('g:polyglot_disabled') || (index(g:polyglot_disabled, 'javascript') == -1 && index(g:polyglot_disabled, 'jsx') == -1)
|
if !exists('g:polyglot_disabled') || (index(g:polyglot_disabled, 'javascript') == -1 && index(g:polyglot_disabled, 'jsx') == -1)
|
||||||
|
|
||||||
source <sfile>:h/javascript.vim
|
source <sfile>:h/jsx.vim
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|||||||
59
after/syntax/jsx.vim
Normal file
59
after/syntax/jsx.vim
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
if !exists('g:polyglot_disabled') || (index(g:polyglot_disabled, 'javascript') == -1 && index(g:polyglot_disabled, 'jsx') == -1)
|
||||||
|
|
||||||
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
|
" Vim syntax file
|
||||||
|
"
|
||||||
|
" Language: javascript.jsx
|
||||||
|
" Maintainer: MaxMellon <maxmellon1994@gmail.com>
|
||||||
|
"
|
||||||
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
|
|
||||||
|
let s:jsx_cpo = &cpo
|
||||||
|
set cpo&vim
|
||||||
|
|
||||||
|
syntax case match
|
||||||
|
|
||||||
|
if exists('b:current_syntax')
|
||||||
|
let s:current_syntax = b:current_syntax
|
||||||
|
unlet b:current_syntax
|
||||||
|
endif
|
||||||
|
|
||||||
|
if exists('s:current_syntax')
|
||||||
|
let b:current_syntax = s:current_syntax
|
||||||
|
endif
|
||||||
|
|
||||||
|
if hlexists("jsDebugger") || hlexists("jsNoise") " yuezk/vim-js or pangloss/vim-javascript
|
||||||
|
syntax cluster jsExpression add=jsxRegion
|
||||||
|
elseif hlexists("javascriptOpSymbols") " othree/yajs.vim
|
||||||
|
" refine the javascript line comment
|
||||||
|
syntax region javascriptLineComment start=+//+ end=/$/ contains=@Spell,javascriptCommentTodo extend keepend
|
||||||
|
syntax cluster javascriptValue add=jsxRegion
|
||||||
|
syntax cluster javascriptNoReserved add=jsxElement,jsxTag
|
||||||
|
else " build-in javascript syntax
|
||||||
|
" refine the javascript line comment
|
||||||
|
syntax region javaScriptLineComment start=+//+ end=/$/ contains=@Spell,javascriptCommentTodo extend keepend
|
||||||
|
|
||||||
|
" refine the template string syntax
|
||||||
|
syntax region javaScriptEmbed matchgroup=javaScriptEmbedBraces start=+\${+ end=+}+ contained contains=@javaScriptEmbededExpr
|
||||||
|
|
||||||
|
" add a javaScriptBlock group for build-in syntax
|
||||||
|
syntax region javaScriptBlock
|
||||||
|
\ matchgroup=javaScriptBraces
|
||||||
|
\ start="{"
|
||||||
|
\ end="}"
|
||||||
|
\ contained
|
||||||
|
\ extend
|
||||||
|
\ contains=javaScriptBlock,@javaScriptEmbededExpr,javaScript.*
|
||||||
|
\ fold
|
||||||
|
|
||||||
|
syntax cluster javaScriptEmbededExpr add=jsxRegion,javaScript.*
|
||||||
|
endif
|
||||||
|
|
||||||
|
runtime syntax/jsx_pretty.vim
|
||||||
|
|
||||||
|
let b:current_syntax = 'javascript.jsx'
|
||||||
|
|
||||||
|
let &cpo = s:jsx_cpo
|
||||||
|
unlet s:jsx_cpo
|
||||||
|
|
||||||
|
endif
|
||||||
@@ -32,6 +32,6 @@ if exists('s:current_syntax')
|
|||||||
let b:current_syntax = s:current_syntax
|
let b:current_syntax = s:current_syntax
|
||||||
endif
|
endif
|
||||||
|
|
||||||
syntax region graphqlMultilineString matchgroup=reasonMultilineString start=+graphql\_s*\zs{|+ end=+|}+ contains=@GraphQLSyntax,reasonEscape,reasonEscapeUnicode,reasonEscapeError,reasonStringContinuation keepend
|
syntax region graphqlExtensionPoint matchgroup=Noise start=+\[%graphql\_s*{|+lc=10 end=+|}\_s*]+he=s+1 contains=@GraphQLSyntax keepend
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|||||||
@@ -552,6 +552,14 @@ function! go#config#GoplsLocal() abort
|
|||||||
return get(g:, 'go_gopls_local', v:null)
|
return get(g:, 'go_gopls_local', v:null)
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
function! go#config#GoplsGofumpt() abort
|
||||||
|
return get(g:, 'go_gopls_gofumpt', v:null)
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
function! go#config#GoplsSettings() abort
|
||||||
|
return get(g:, 'go_gopls_settings', v:null)
|
||||||
|
endfunction
|
||||||
|
|
||||||
function! go#config#GoplsEnabled() abort
|
function! go#config#GoplsEnabled() abort
|
||||||
return get(g:, 'go_gopls_enabled', 1)
|
return get(g:, 'go_gopls_enabled', 1)
|
||||||
endfunction
|
endfunction
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ let s:interpreters = {
|
|||||||
\ 'escript': 'erlang',
|
\ 'escript': 'erlang',
|
||||||
\ 'fish': 'fish',
|
\ 'fish': 'fish',
|
||||||
\ 'gnuplot': 'gnuplot',
|
\ 'gnuplot': 'gnuplot',
|
||||||
|
\ 'groovy': 'groovy',
|
||||||
\ 'runhaskell': 'haskell',
|
\ 'runhaskell': 'haskell',
|
||||||
\ 'chakra': 'javascript',
|
\ 'chakra': 'javascript',
|
||||||
\ 'd8': 'javascript',
|
\ 'd8': 'javascript',
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ let s:globs = {
|
|||||||
\ 'clojure': '*.clj,*.boot,*.cl2,*.cljc,*.cljs,*.cljs.hl,*.cljscm,*.cljx,*.hic,*.edn,riemann.config,build.boot,profile.boot',
|
\ 'clojure': '*.clj,*.boot,*.cl2,*.cljc,*.cljs,*.cljs.hl,*.cljscm,*.cljx,*.hic,*.edn,riemann.config,build.boot,profile.boot',
|
||||||
\ 'cmake': '*.cmake,*.cmake.in,CMakeLists.txt',
|
\ 'cmake': '*.cmake,*.cmake.in,CMakeLists.txt',
|
||||||
\ 'coffee': '*.coffee,*._coffee,*.cake,*.cjsx,*.iced,*.coffeekup,Cakefile',
|
\ 'coffee': '*.coffee,*._coffee,*.cake,*.cjsx,*.iced,*.coffeekup,Cakefile',
|
||||||
\ 'cpp': '*.cpp,*.c++,*.cc,*.cp,*.cxx,*.h,*.h++,*.hh,*.hpp,*.hxx,*.inc,*.inl,*.ipp,*.tcc,*.tpp,*.moc',
|
\ 'cpp': '*.cpp,*.c++,*.cc,*.cp,*.cxx,*.h,*.h++,*.hh,*.hpp,*.hxx,*.inc,*.inl,*.ipp,*.tcc,*.tpp,*.moc,*.tlh',
|
||||||
\ 'cql': '*.cql',
|
\ 'cql': '*.cql',
|
||||||
\ 'cryptol': '*.cry,*.cyl,*.lcry,*.lcyl',
|
\ 'cryptol': '*.cry,*.cyl,*.lcry,*.lcyl',
|
||||||
\ 'crystal': '*.cr,Projectfile',
|
\ 'crystal': '*.cr,Projectfile',
|
||||||
@@ -78,18 +78,18 @@ let s:globs = {
|
|||||||
\ 'forth': '*.fs,*.ft,*.fth',
|
\ 'forth': '*.fs,*.ft,*.fth',
|
||||||
\ 'fsharp': '*.fs,*.fsi,*.fsx',
|
\ 'fsharp': '*.fs,*.fsi,*.fsx',
|
||||||
\ 'gdscript3': '*.gd',
|
\ 'gdscript3': '*.gd',
|
||||||
\ 'gitcommit': '',
|
\ 'gitcommit': 'COMMIT_EDITMSG,MERGE_MSG,TAG_EDITMSG',
|
||||||
\ 'gitconfig': '*.gitconfig',
|
\ 'gitconfig': '*.gitconfig',
|
||||||
\ 'gitrebase': 'git-rebase-todo',
|
\ 'gitrebase': 'git-rebase-todo',
|
||||||
\ 'gitsendemail': '',
|
\ 'gitsendemail': '',
|
||||||
\ 'glsl': '*.glsl,*.fp,*.frag,*.frg,*.fs,*.fsh,*.fshader,*.geo,*.geom,*.glslf,*.glslv,*.gs,*.gshader,*.shader,*.tesc,*.tese,*.vert,*.vrx,*.vsh,*.vshader,*.comp',
|
\ 'glsl': '*.glsl,*.fp,*.frag,*.frg,*.fs,*.fsh,*.fshader,*.geo,*.geom,*.glslf,*.glslv,*.gs,*.gshader,*.shader,*.tesc,*.tese,*.vert,*.vrx,*.vsh,*.vshader,*.comp',
|
||||||
\ 'gmpl': '*.mod',
|
\ 'gmpl': '*.mod',
|
||||||
\ 'gnuplot': '*.gp,*.gnu,*.gnuplot,*.p,*.plot,*.plt',
|
\ 'gnuplot': '*.gp,*.gnu,*.gnuplot,*.p,*.plot,*.plt,*.gpi',
|
||||||
\ 'go': '*.go',
|
\ 'go': '*.go',
|
||||||
\ 'gohtmltmpl': '*.tmpl',
|
\ 'gohtmltmpl': '*.tmpl',
|
||||||
\ 'gomod': 'go.mod',
|
\ 'gomod': 'go.mod',
|
||||||
\ 'graphql': '*.graphql,*.gql,*.graphqls',
|
\ 'graphql': '*.graphql,*.gql,*.graphqls',
|
||||||
\ 'groovy': '*.gradle',
|
\ 'groovy': '*.groovy,*.grt,*.gtpl,*.gvy,*.gradle,Jenkinsfile',
|
||||||
\ 'grub': '',
|
\ 'grub': '',
|
||||||
\ 'haml': '*.haml,*.haml.deface,*.hamlc,*.hamlbars',
|
\ 'haml': '*.haml,*.haml.deface,*.hamlc,*.hamlbars',
|
||||||
\ 'haproxy': '*.cfg,haproxy.cfg,haproxy*.c*',
|
\ 'haproxy': '*.cfg,haproxy.cfg,haproxy*.c*',
|
||||||
|
|||||||
@@ -46,8 +46,7 @@ the list of recognized template tag names.
|
|||||||
REASONML *graphql-reasonml*
|
REASONML *graphql-reasonml*
|
||||||
|
|
||||||
GraphQL syntax support inside of ReasonML template strings using graphql-ppx
|
GraphQL syntax support inside of ReasonML template strings using graphql-ppx
|
||||||
is available when vim-reasonml (https://github.com/jordwalke/vim-reasonml) is
|
is available.
|
||||||
also installed.
|
|
||||||
|
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
vim:tw=78:ft=help:norl:
|
vim:tw=78:ft=help:norl:
|
||||||
|
|||||||
@@ -802,7 +802,7 @@ CTRL-t
|
|||||||
You can define a constant value instead of the default field based value.
|
You can define a constant value instead of the default field based value.
|
||||||
For example the following command will add ``valid:"1"`` to all fields.
|
For example the following command will add ``valid:"1"`` to all fields.
|
||||||
>
|
>
|
||||||
:GoAddTags valid=1
|
:GoAddTags valid:1
|
||||||
<
|
<
|
||||||
*:GoRemoveTags*
|
*:GoRemoveTags*
|
||||||
:[range]GoRemoveTags [key],[option] [key1],[option1] ...
|
:[range]GoRemoveTags [key],[option] [key1],[option1] ...
|
||||||
@@ -1876,6 +1876,24 @@ is `v:null`.
|
|||||||
let g:go_gopls_local = v:null
|
let g:go_gopls_local = v:null
|
||||||
<
|
<
|
||||||
|
|
||||||
|
*'g:go_gopls_gofumpt'*
|
||||||
|
|
||||||
|
Specifies whether `gopls` should use `gofumpt` for formatting. When it is
|
||||||
|
`v:null`, `gopls`' default will be used. By default it is `v:null`.
|
||||||
|
>
|
||||||
|
let g:go_gopls_gofumpt = v:null
|
||||||
|
<
|
||||||
|
|
||||||
|
*'g:go_gopls_settings'*
|
||||||
|
|
||||||
|
Specifies `gopls` workspace settings for `gopls` that are not yet officially
|
||||||
|
supported by vim-go. Any value in the dictionary will be overridden by values
|
||||||
|
provided in the specific options supported by vim-go (e.g.
|
||||||
|
g:go_gopls_staticcheck) or settings statically configured by vim-go to ensure
|
||||||
|
expected behavior. By default it is `v:null`.
|
||||||
|
>
|
||||||
|
let g:go_gopls_settings = v:null
|
||||||
|
<
|
||||||
*'g:go_diagnostics_enabled'*
|
*'g:go_diagnostics_enabled'*
|
||||||
|
|
||||||
Specifies whether `gopls` diagnostics are enabled. Only the diagnostics for
|
Specifies whether `gopls` diagnostics are enabled. Only the diagnostics for
|
||||||
|
|||||||
@@ -46,6 +46,7 @@ CONFIG *vim-jsx-pretty-config*
|
|||||||
|---------------------------------------|---------|----------------------|
|
|---------------------------------------|---------|----------------------|
|
||||||
| g:vim_jsx_pretty_enable_jsx_highlight | 1 | jsx highlight flag |
|
| g:vim_jsx_pretty_enable_jsx_highlight | 1 | jsx highlight flag |
|
||||||
| g:vim_jsx_pretty_colorful_config | 0 | colorful config flag |
|
| g:vim_jsx_pretty_colorful_config | 0 | colorful config flag |
|
||||||
|
| g:vim_jsx_pretty_disable_js | 0 | js toggle flag |
|
||||||
<
|
<
|
||||||
|
|
||||||
- *g:vim_jsx_pretty_enable_jsx_highlight*
|
- *g:vim_jsx_pretty_enable_jsx_highlight*
|
||||||
|
|||||||
@@ -13,6 +13,8 @@ if exists('g:polyglot_disabled')
|
|||||||
for pkg in g:polyglot_disabled
|
for pkg in g:polyglot_disabled
|
||||||
let s:disabled_packages[pkg] = 1
|
let s:disabled_packages[pkg] = 1
|
||||||
endfor
|
endfor
|
||||||
|
else
|
||||||
|
let g:polyglot_disabled_not_set = 1
|
||||||
endif
|
endif
|
||||||
|
|
||||||
function! s:SetDefault(name, value)
|
function! s:SetDefault(name, value)
|
||||||
@@ -169,6 +171,10 @@ if !has_key(s:disabled_packages, 'go')
|
|||||||
au! BufRead,BufNewFile *.go
|
au! BufRead,BufNewFile *.go
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if !has_key(s:disabled_packages, 'groovy')
|
||||||
|
au! BufRead,BufNewFile *.groovy
|
||||||
|
endif
|
||||||
|
|
||||||
if !has_key(s:disabled_packages, 'haml')
|
if !has_key(s:disabled_packages, 'haml')
|
||||||
au! BufRead,BufNewFile *.haml
|
au! BufRead,BufNewFile *.haml
|
||||||
endif
|
endif
|
||||||
@@ -490,11 +496,13 @@ if !has_key(s:disabled_packages, 'c/c++')
|
|||||||
au BufNewFile,BufRead *.ipp setf cpp
|
au BufNewFile,BufRead *.ipp setf cpp
|
||||||
au BufNewFile,BufRead *.moc setf cpp
|
au BufNewFile,BufRead *.moc setf cpp
|
||||||
au BufNewFile,BufRead *.tcc setf cpp
|
au BufNewFile,BufRead *.tcc setf cpp
|
||||||
|
au BufNewFile,BufRead *.tlh setf cpp
|
||||||
au BufNewFile,BufRead *.tpp setf cpp
|
au BufNewFile,BufRead *.tpp setf cpp
|
||||||
au BufNewFile,BufRead *.c setf c
|
au BufNewFile,BufRead *.c setf c
|
||||||
au BufNewFile,BufRead *.cats setf c
|
au BufNewFile,BufRead *.cats setf c
|
||||||
au BufNewFile,BufRead *.idc setf c
|
au BufNewFile,BufRead *.idc setf c
|
||||||
au BufNewFile,BufRead *.qc setf c
|
au BufNewFile,BufRead *.qc setf c
|
||||||
|
au BufNewFile,BufRead *enlightenment/*.cfg setf c
|
||||||
au! BufNewFile,BufRead *.h call polyglot#DetectHFiletype()
|
au! BufNewFile,BufRead *.h call polyglot#DetectHFiletype()
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@@ -681,13 +689,15 @@ endif
|
|||||||
if !has_key(s:disabled_packages, 'git')
|
if !has_key(s:disabled_packages, 'git')
|
||||||
au BufNewFile,BufRead *.gitconfig setf gitconfig
|
au BufNewFile,BufRead *.gitconfig setf gitconfig
|
||||||
au BufNewFile,BufRead *.git/config setf gitconfig
|
au BufNewFile,BufRead *.git/config setf gitconfig
|
||||||
au BufNewFile,BufRead *.git/modules/**/config setf gitconfig
|
au BufNewFile,BufRead *.git/modules/*/config setf gitconfig
|
||||||
au BufNewFile,BufRead */.config/git/config setf gitconfig
|
au BufNewFile,BufRead */.config/git/config setf gitconfig
|
||||||
|
au BufNewFile,BufRead */git/config setf gitconfig
|
||||||
|
au BufNewFile,BufRead */{.,}gitconfig.d/* call s:StarSetf('gitconfig')
|
||||||
au BufNewFile,BufRead {.,}gitconfig setf gitconfig
|
au BufNewFile,BufRead {.,}gitconfig setf gitconfig
|
||||||
au BufNewFile,BufRead {.,}gitmodules setf gitconfig
|
au BufNewFile,BufRead {.,}gitmodules setf gitconfig
|
||||||
au BufNewFile,BufRead git-rebase-todo setf gitrebase
|
au BufNewFile,BufRead git-rebase-todo setf gitrebase
|
||||||
au BufNewFile,BufRead {.,}gitsendemail.* call s:StarSetf('gitsendemail')
|
au BufNewFile,BufRead {.,}gitsendemail.* call s:StarSetf('gitsendemail')
|
||||||
au BufNewFile,BufRead *.git/{,modules/**/,worktrees/*/}{COMMIT_EDIT,TAG_EDIT,MERGE_,}MSG setf gitcommit
|
au BufNewFile,BufRead COMMIT_EDITMSG,MERGE_MSG,TAG_EDITMSG setf gitcommit
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if !has_key(s:disabled_packages, 'glsl')
|
if !has_key(s:disabled_packages, 'glsl')
|
||||||
@@ -722,6 +732,7 @@ if !has_key(s:disabled_packages, 'gnuplot')
|
|||||||
au BufNewFile,BufRead *.gnu setf gnuplot
|
au BufNewFile,BufRead *.gnu setf gnuplot
|
||||||
au BufNewFile,BufRead *.gnuplot setf gnuplot
|
au BufNewFile,BufRead *.gnuplot setf gnuplot
|
||||||
au BufNewFile,BufRead *.gp setf gnuplot
|
au BufNewFile,BufRead *.gp setf gnuplot
|
||||||
|
au BufNewFile,BufRead *.gpi setf gnuplot
|
||||||
au BufNewFile,BufRead *.p setf gnuplot
|
au BufNewFile,BufRead *.p setf gnuplot
|
||||||
au BufNewFile,BufRead *.plot setf gnuplot
|
au BufNewFile,BufRead *.plot setf gnuplot
|
||||||
au BufNewFile,BufRead *.plt setf gnuplot
|
au BufNewFile,BufRead *.plt setf gnuplot
|
||||||
@@ -739,8 +750,13 @@ if !has_key(s:disabled_packages, 'graphql')
|
|||||||
au BufNewFile,BufRead *.graphqls setf graphql
|
au BufNewFile,BufRead *.graphqls setf graphql
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if !has_key(s:disabled_packages, 'gradle')
|
if !has_key(s:disabled_packages, 'groovy')
|
||||||
au BufNewFile,BufRead *.gradle setf groovy
|
au BufNewFile,BufRead *.gradle setf groovy
|
||||||
|
au BufNewFile,BufRead *.groovy setf groovy
|
||||||
|
au BufNewFile,BufRead *.grt setf groovy
|
||||||
|
au BufNewFile,BufRead *.gtpl setf groovy
|
||||||
|
au BufNewFile,BufRead *.gvy setf groovy
|
||||||
|
au BufNewFile,BufRead Jenkinsfile setf groovy
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if !has_key(s:disabled_packages, 'haml')
|
if !has_key(s:disabled_packages, 'haml')
|
||||||
@@ -835,6 +851,10 @@ if !has_key(s:disabled_packages, 'ion')
|
|||||||
au BufNewFile,BufRead ~/.config/ion/initrc setf ion
|
au BufNewFile,BufRead ~/.config/ion/initrc setf ion
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if !has_key(s:disabled_packages, 'jsx')
|
||||||
|
au BufNewFile,BufRead *.jsx setf javascriptreact
|
||||||
|
endif
|
||||||
|
|
||||||
if !has_key(s:disabled_packages, 'javascript')
|
if !has_key(s:disabled_packages, 'javascript')
|
||||||
au BufNewFile,BufRead *._js setf javascript
|
au BufNewFile,BufRead *._js setf javascript
|
||||||
au BufNewFile,BufRead *.bones setf javascript
|
au BufNewFile,BufRead *.bones setf javascript
|
||||||
@@ -877,6 +897,7 @@ endif
|
|||||||
if !has_key(s:disabled_packages, 'jq')
|
if !has_key(s:disabled_packages, 'jq')
|
||||||
au BufNewFile,BufRead *.jq setf jq
|
au BufNewFile,BufRead *.jq setf jq
|
||||||
au BufNewFile,BufRead {.,}jqrc setf jq
|
au BufNewFile,BufRead {.,}jqrc setf jq
|
||||||
|
au BufNewFile,BufRead {.,}jqrc* call s:StarSetf('jq')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if !has_key(s:disabled_packages, 'json5')
|
if !has_key(s:disabled_packages, 'json5')
|
||||||
@@ -922,10 +943,6 @@ if !has_key(s:disabled_packages, 'jst')
|
|||||||
au BufNewFile,BufRead *.jst setf jst
|
au BufNewFile,BufRead *.jst setf jst
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if !has_key(s:disabled_packages, 'jsx')
|
|
||||||
au BufNewFile,BufRead *.jsx setf javascriptreact
|
|
||||||
endif
|
|
||||||
|
|
||||||
if !has_key(s:disabled_packages, 'julia')
|
if !has_key(s:disabled_packages, 'julia')
|
||||||
au BufNewFile,BufRead *.jl setf julia
|
au BufNewFile,BufRead *.jl setf julia
|
||||||
endif
|
endif
|
||||||
@@ -1758,17 +1775,14 @@ endif
|
|||||||
" end filetypes
|
" end filetypes
|
||||||
|
|
||||||
au BufNewFile,BufRead,StdinReadPost *
|
au BufNewFile,BufRead,StdinReadPost *
|
||||||
\ if !did_filetype() && expand("<amatch>") !~ g:ft_ignore_pat
|
\ if !did_filetype() && expand("<afile>") !~ g:ft_ignore_pat
|
||||||
\ | call polyglot#Heuristics() | endif
|
\ | call polyglot#Heuristics() | endif
|
||||||
|
|
||||||
|
|
||||||
if v:version < 700 || &cp
|
if !has_key(s:disabled_packages, 'autoindent')
|
||||||
finish
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
" Code below re-implements sleuth for vim-polyglot
|
" Code below re-implements sleuth for vim-polyglot
|
||||||
let g:loaded_sleuth = 1
|
let g:loaded_sleuth = 1
|
||||||
|
let g:loaded_foobar = 1
|
||||||
|
|
||||||
" Makes shiftwidth to be synchronized with tabstop by default
|
" Makes shiftwidth to be synchronized with tabstop by default
|
||||||
if &shiftwidth == &tabstop
|
if &shiftwidth == &tabstop
|
||||||
@@ -1785,8 +1799,11 @@ function! s:guess(lines) abort
|
|||||||
let heredoc = ''
|
let heredoc = ''
|
||||||
let minindent = 10
|
let minindent = 10
|
||||||
let spaces_minus_tabs = 0
|
let spaces_minus_tabs = 0
|
||||||
|
let i = 0
|
||||||
|
|
||||||
for line in a:lines
|
for line in a:lines
|
||||||
|
let i += 1
|
||||||
|
|
||||||
if !len(line) || line =~# '^\W*$'
|
if !len(line) || line =~# '^\W*$'
|
||||||
continue
|
continue
|
||||||
endif
|
endif
|
||||||
@@ -1855,6 +1872,8 @@ function! s:guess(lines) abort
|
|||||||
|
|
||||||
if line[0] == "\t"
|
if line[0] == "\t"
|
||||||
setlocal noexpandtab
|
setlocal noexpandtab
|
||||||
|
let &shiftwidth=&tabstop
|
||||||
|
let b:sleuth_culprit .= ':' . i
|
||||||
return 1
|
return 1
|
||||||
elseif line[0] == " "
|
elseif line[0] == " "
|
||||||
let indent = len(matchstr(line, '^ *'))
|
let indent = len(matchstr(line, '^ *'))
|
||||||
@@ -1867,6 +1886,7 @@ function! s:guess(lines) abort
|
|||||||
if minindent < 10
|
if minindent < 10
|
||||||
setlocal expandtab
|
setlocal expandtab
|
||||||
let &shiftwidth=minindent
|
let &shiftwidth=minindent
|
||||||
|
let b:sleuth_culprit .= ':' . i
|
||||||
return 1
|
return 1
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@@ -1878,6 +1898,7 @@ function! s:detect_indent() abort
|
|||||||
return
|
return
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
let b:sleuth_culprit = expand("<afile>:p")
|
||||||
if s:guess(getline(1, 32))
|
if s:guess(getline(1, 32))
|
||||||
return
|
return
|
||||||
endif
|
endif
|
||||||
@@ -1891,12 +1912,15 @@ function! s:detect_indent() abort
|
|||||||
while isdirectory(dir) && dir !=# fnamemodify(dir, ':h') && level > 0
|
while isdirectory(dir) && dir !=# fnamemodify(dir, ':h') && level > 0
|
||||||
" Ignore files from homedir and root
|
" Ignore files from homedir and root
|
||||||
if dir == expand('~') || dir == '/'
|
if dir == expand('~') || dir == '/'
|
||||||
|
unlet b:sleuth_culprit
|
||||||
return
|
return
|
||||||
endif
|
endif
|
||||||
for neighbor in glob(dir . '/' . pattern, 0, 1)[0:level]
|
for neighbor in glob(dir . '/' . pattern, 0, 1)[0:level]
|
||||||
|
let b:sleuth_culprit = neighbor
|
||||||
" Do not consider directories above .git, .svn or .hg
|
" Do not consider directories above .git, .svn or .hg
|
||||||
if fnamemodify(neighbor, ":h:t")[0] == "."
|
if fnamemodify(neighbor, ":h:t")[0] == "."
|
||||||
return
|
let level = 0
|
||||||
|
continue
|
||||||
endif
|
endif
|
||||||
if neighbor !=# expand('%:p') && filereadable(neighbor)
|
if neighbor !=# expand('%:p') && filereadable(neighbor)
|
||||||
if s:guess(readfile(neighbor, '', 32))
|
if s:guess(readfile(neighbor, '', 32))
|
||||||
@@ -1908,15 +1932,46 @@ function! s:detect_indent() abort
|
|||||||
let dir = fnamemodify(dir, ':h')
|
let dir = fnamemodify(dir, ':h')
|
||||||
let level -= 1
|
let level -= 1
|
||||||
endwhile
|
endwhile
|
||||||
|
|
||||||
|
unlet b:sleuth_culprit
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
setglobal smarttab
|
setglobal smarttab
|
||||||
|
|
||||||
|
function! SleuthIndicator() abort
|
||||||
|
let sw = &shiftwidth ? &shiftwidth : &tabstop
|
||||||
|
if &expandtab
|
||||||
|
return 'sw='.sw
|
||||||
|
elseif &tabstop == sw
|
||||||
|
return 'ts='.&tabstop
|
||||||
|
else
|
||||||
|
return 'sw='.sw.',ts='.&tabstop
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
augroup polyglot
|
augroup polyglot
|
||||||
autocmd!
|
autocmd!
|
||||||
autocmd FileType * call s:detect_indent()
|
autocmd FileType * call s:detect_indent()
|
||||||
|
autocmd User Flags call Hoist('buffer', 5, 'SleuthIndicator')
|
||||||
augroup END
|
augroup END
|
||||||
|
|
||||||
|
command! -bar -bang Sleuth call s:detect_indent()
|
||||||
|
endif
|
||||||
|
|
||||||
|
func! s:verify()
|
||||||
|
if exists("g:polyglot_disabled_not_set")
|
||||||
|
if exists("g:polyglot_disabled")
|
||||||
|
echohl WarningMsg
|
||||||
|
echo "vim-polyglot: g:polyglot_disabled should be at the top of .vimrc"
|
||||||
|
echohl None
|
||||||
|
endif
|
||||||
|
|
||||||
|
unlet g:polyglot_disabled_not_set
|
||||||
|
endif
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
autocmd VimEnter * call s:verify()
|
||||||
|
|
||||||
" restore Vi compatibility settings
|
" restore Vi compatibility settings
|
||||||
let &cpo = s:cpo_save
|
let &cpo = s:cpo_save
|
||||||
unlet s:cpo_save
|
unlet s:cpo_save
|
||||||
|
|||||||
23
ftplugin/groovy.vim
Normal file
23
ftplugin/groovy.vim
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'groovy') == -1
|
||||||
|
|
||||||
|
" Vim filetype plugin file
|
||||||
|
" Language: groovy
|
||||||
|
" Maintainer: Justin M. Keyes <justinkz@gmail.com>
|
||||||
|
" Last Change: 2016 May 22
|
||||||
|
|
||||||
|
if exists('b:did_ftplugin')
|
||||||
|
finish
|
||||||
|
endif
|
||||||
|
let b:did_ftplugin = 1
|
||||||
|
|
||||||
|
let s:cpo_save = &cpo
|
||||||
|
set cpo-=C
|
||||||
|
|
||||||
|
let b:undo_ftplugin = 'setlocal commentstring<'
|
||||||
|
|
||||||
|
setlocal commentstring=//%s
|
||||||
|
|
||||||
|
let &cpo = s:cpo_save
|
||||||
|
unlet s:cpo_save
|
||||||
|
|
||||||
|
endif
|
||||||
@@ -19,7 +19,7 @@ setlocal comments=:# commentstring=#\ %s expandtab
|
|||||||
setlocal formatoptions-=t formatoptions+=croql
|
setlocal formatoptions-=t formatoptions+=croql
|
||||||
|
|
||||||
if !exists("g:yaml_recommended_style") || g:yaml_recommended_style != 0
|
if !exists("g:yaml_recommended_style") || g:yaml_recommended_style != 0
|
||||||
let b:undo_ftplugin ..= " sw< sts<"
|
let b:undo_ftplugin .= " sw< sts<"
|
||||||
setlocal shiftwidth=2 softtabstop=2
|
setlocal shiftwidth=2 softtabstop=2
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|||||||
@@ -318,16 +318,25 @@ filetypes:
|
|||||||
linguist: C++
|
linguist: C++
|
||||||
extra_extensions:
|
extra_extensions:
|
||||||
- moc
|
- moc
|
||||||
|
# TLH files are C++ headers generated by Visual C++'s #import from typelibs
|
||||||
|
- tlh
|
||||||
ignored_extensions:
|
ignored_extensions:
|
||||||
# conflicts with more popular reason, remove after heuristics work
|
# conflicts with more popular reason, remove after heuristics work
|
||||||
- re
|
- re
|
||||||
# implemented by arduino
|
# implemented by arduino
|
||||||
- ino
|
- ino
|
||||||
|
ignored_warnings:
|
||||||
|
# TODO: fix these
|
||||||
|
- C
|
||||||
|
- H
|
||||||
- name: c
|
- name: c
|
||||||
linguist: C
|
linguist: C
|
||||||
extra_extensions:
|
extra_extensions:
|
||||||
# Quake C
|
# Quake C
|
||||||
- qc
|
- qc
|
||||||
|
extra_filenames:
|
||||||
|
# Enlightenment configuration file
|
||||||
|
- '*enlightenment/*.cfg'
|
||||||
---
|
---
|
||||||
name: caddyfile
|
name: caddyfile
|
||||||
remote: isobit/vim-caddyfile
|
remote: isobit/vim-caddyfile
|
||||||
@@ -601,16 +610,27 @@ filetypes:
|
|||||||
extra_filenames:
|
extra_filenames:
|
||||||
- "*.git/config"
|
- "*.git/config"
|
||||||
- "*/.config/git/config"
|
- "*/.config/git/config"
|
||||||
|
- "*.git/modules/*/config"
|
||||||
|
- "*/git/config"
|
||||||
|
- "*/{.,}gitconfig.d/*"
|
||||||
|
ignored_warnings:
|
||||||
|
- '/etc/gitconfig'
|
||||||
|
- '$XDG_CONFIG_HOME/git/config'
|
||||||
- "*.git/modules/**/config"
|
- "*.git/modules/**/config"
|
||||||
- '.gitmodules'
|
- "*.git/modules/**/config"
|
||||||
|
- "/etc/gitconfig.d/*"
|
||||||
- name: gitrebase
|
- name: gitrebase
|
||||||
filenames:
|
filenames:
|
||||||
- git-rebase-todo
|
- git-rebase-todo
|
||||||
- name: gitsendemail
|
- name: gitsendemail
|
||||||
filenames:
|
filenames:
|
||||||
- ".gitsendemail.*"
|
- ".gitsendemail.*"
|
||||||
|
ignored_warnings:
|
||||||
|
- '.gitsendemail.msg.??????'
|
||||||
- name: gitcommit
|
- name: gitcommit
|
||||||
filenames:
|
filenames:
|
||||||
|
- 'COMMIT_EDITMSG,MERGE_MSG,TAG_EDITMSG'
|
||||||
|
ignored_warnings:
|
||||||
- '*.git/{,modules/**/,worktrees/*/}{COMMIT_EDIT,TAG_EDIT,MERGE_,}MSG'
|
- '*.git/{,modules/**/,worktrees/*/}{COMMIT_EDIT,TAG_EDIT,MERGE_,}MSG'
|
||||||
---
|
---
|
||||||
name: glsl
|
name: glsl
|
||||||
@@ -636,6 +656,9 @@ remote: vim-scripts/gnuplot-syntax-highlighting
|
|||||||
filetypes:
|
filetypes:
|
||||||
- name: gnuplot
|
- name: gnuplot
|
||||||
linguist: Gnuplot
|
linguist: Gnuplot
|
||||||
|
extra_extensions:
|
||||||
|
# Gnuplot scripts
|
||||||
|
- gpi
|
||||||
---
|
---
|
||||||
name: go
|
name: go
|
||||||
remote: fatih/vim-go
|
remote: fatih/vim-go
|
||||||
@@ -656,15 +679,29 @@ filetypes:
|
|||||||
---
|
---
|
||||||
name: graphql
|
name: graphql
|
||||||
remote: jparise/vim-graphql
|
remote: jparise/vim-graphql
|
||||||
|
after: [javascript, jsx]
|
||||||
|
ignored_dirs:
|
||||||
|
# TODO: remove after bug is fixed:
|
||||||
|
# https://github.com/jparise/vim-graphql/issues/62
|
||||||
|
- after/indent
|
||||||
filetypes:
|
filetypes:
|
||||||
- name: graphql
|
- name: graphql
|
||||||
linguist: GraphQL
|
linguist: GraphQL
|
||||||
---
|
---
|
||||||
name: gradle
|
name: gradle
|
||||||
remote: tfnico/vim-gradle
|
remote: tfnico/vim-gradle
|
||||||
|
after: groovy
|
||||||
|
# Just adds compiler
|
||||||
|
filetypes: []
|
||||||
|
---
|
||||||
|
name: groovy
|
||||||
|
remote: vim/vim:runtime
|
||||||
|
glob: '**/groovy.vim'
|
||||||
filetypes:
|
filetypes:
|
||||||
- name: groovy
|
- name: groovy
|
||||||
linguist: Gradle
|
linguist: Groovy
|
||||||
|
extra_extensions:
|
||||||
|
- gradle
|
||||||
---
|
---
|
||||||
name: grub
|
name: grub
|
||||||
remote: vim/vim:runtime
|
remote: vim/vim:runtime
|
||||||
@@ -851,7 +888,6 @@ filetypes:
|
|||||||
linguist: JSONiq
|
linguist: JSONiq
|
||||||
extra_filenames:
|
extra_filenames:
|
||||||
- ".jqrc"
|
- ".jqrc"
|
||||||
ignored_filenames:
|
|
||||||
- ".jqrc*"
|
- ".jqrc*"
|
||||||
---
|
---
|
||||||
name: json5
|
name: json5
|
||||||
@@ -890,6 +926,7 @@ filetypes:
|
|||||||
---
|
---
|
||||||
name: jsx
|
name: jsx
|
||||||
remote: MaxMEllon/vim-jsx-pretty
|
remote: MaxMEllon/vim-jsx-pretty
|
||||||
|
after: javascript
|
||||||
filetypes:
|
filetypes:
|
||||||
- name: javascriptreact
|
- name: javascriptreact
|
||||||
linguist: JSX
|
linguist: JSX
|
||||||
|
|||||||
@@ -36,6 +36,7 @@ def load_data()
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
puts deps["javascript"]
|
||||||
each_node = lambda {|&b| packages.keys.each(&b) }
|
each_node = lambda {|&b| packages.keys.each(&b) }
|
||||||
each_child = lambda {|n, &b| deps[n].each(&b) }
|
each_child = lambda {|n, &b| deps[n].each(&b) }
|
||||||
|
|
||||||
@@ -168,14 +169,41 @@ def copy_file(package, src, dest)
|
|||||||
FileUtils.mkdir_p(File.dirname(dest))
|
FileUtils.mkdir_p(File.dirname(dest))
|
||||||
name = package.fetch("name")
|
name = package.fetch("name")
|
||||||
|
|
||||||
|
header = '" Polyglot metafile'
|
||||||
|
if File.exist?(dest)
|
||||||
|
meta_dest = dest
|
||||||
|
new_dest = dest
|
||||||
|
i = 0
|
||||||
|
while File.exist?(new_dest)
|
||||||
|
i += 1
|
||||||
|
new_dest = "#{dest.gsub(/\.vim$/, '')}-#{i}.vim"
|
||||||
|
end
|
||||||
|
|
||||||
|
if File.read(dest).include?(header)
|
||||||
|
dest = new_dest
|
||||||
|
else
|
||||||
|
FileUtils.mv(dest, new_dest)
|
||||||
|
File.write(meta_dest, "#{header}\n")
|
||||||
|
open(meta_dest, "a+") do |output|
|
||||||
|
output << "source <sfile>:h/#{File.basename(new_dest)}\n"
|
||||||
|
end
|
||||||
|
dest = "#{dest.gsub(/\.vim$/, '')}-#{i+1}.vim"
|
||||||
|
end
|
||||||
|
open(meta_dest, "a+") do |output|
|
||||||
|
output << "source <sfile>:h/#{File.basename(dest)}\n"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
open(src, "r") do |input|
|
open(src, "r") do |input|
|
||||||
open(dest, "a+") do |output|
|
open(dest, "w") do |output|
|
||||||
if name == "jsx"
|
if name == "jsx"
|
||||||
output << "if !exists('g:polyglot_disabled') || (index(g:polyglot_disabled, 'javascript') == -1 && index(g:polyglot_disabled, 'jsx') == -1)\n\n"
|
output << "if !exists('g:polyglot_disabled') || (index(g:polyglot_disabled, 'javascript') == -1 && index(g:polyglot_disabled, 'jsx') == -1)\n\n"
|
||||||
else
|
else
|
||||||
output << "if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, '#{name}') == -1\n\n"
|
output << "if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, '#{name}') == -1\n\n"
|
||||||
end
|
end
|
||||||
IO.copy_stream(input, output)
|
contents = File.read(input)
|
||||||
|
contents.gsub!(' ..= ', ' .= ')
|
||||||
|
output << contents
|
||||||
output << "\nendif\n"
|
output << "\nendif\n"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -333,7 +361,8 @@ def extract(packages)
|
|||||||
FileUtils.rm_rf(all_dirs)
|
FileUtils.rm_rf(all_dirs)
|
||||||
|
|
||||||
output = []
|
output = []
|
||||||
packages.map do |package|
|
# We need to reverse packages so they are included in proper order
|
||||||
|
packages.reverse.map do |package|
|
||||||
repo, branch, path, dir = parse_remote(package["remote"])
|
repo, branch, path, dir = parse_remote(package["remote"])
|
||||||
dirs = package.fetch("dirs", default_dirs)
|
dirs = package.fetch("dirs", default_dirs)
|
||||||
ignored_dirs = package.fetch("ignored_dirs", [])
|
ignored_dirs = package.fetch("ignored_dirs", [])
|
||||||
@@ -463,7 +492,7 @@ def generate_ftdetect(packages, heuristics)
|
|||||||
extensions = filetype["extensions"]
|
extensions = filetype["extensions"]
|
||||||
filenames = filetype["filenames"]
|
filenames = filetype["filenames"]
|
||||||
|
|
||||||
expected_extensions = (all_filetypes.has_key?(name) ? all_filetypes.fetch(name)[:extensions] : []).map(&:downcase)
|
expected_extensions = (all_filetypes.has_key?(name) ? all_filetypes.fetch(name)[:extensions] : [])
|
||||||
ignored_extensions = expand_all(filetype.fetch("ignored_extensions", []))
|
ignored_extensions = expand_all(filetype.fetch("ignored_extensions", []))
|
||||||
ignored_warnings = expand_all(filetype.fetch("ignored_warnings", []))
|
ignored_warnings = expand_all(filetype.fetch("ignored_warnings", []))
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ function! TestExtension(filetype, filename, content)
|
|||||||
1delete _
|
1delete _
|
||||||
filetype detect
|
filetype detect
|
||||||
exec "if &filetype != '" . a:filetype . "' \nthrow &filetype\nendif"
|
exec "if &filetype != '" . a:filetype . "' \nthrow &filetype\nendif"
|
||||||
exec ":bw!"
|
exec ":q!"
|
||||||
catch
|
catch
|
||||||
echo g:message
|
echo g:message
|
||||||
echo "Filename '" . a:filename . "' does not resolve to extension '" . a:filetype . "'"
|
echo "Filename '" . a:filename . "' does not resolve to extension '" . a:filetype . "'"
|
||||||
|
|||||||
@@ -109,6 +109,7 @@ call TestFiletype('idris')
|
|||||||
call TestFiletype('idris2')
|
call TestFiletype('idris2')
|
||||||
call TestFiletype('lidris2')
|
call TestFiletype('lidris2')
|
||||||
call TestFiletype('ion')
|
call TestFiletype('ion')
|
||||||
|
call TestFiletype('javascriptreact')
|
||||||
call TestFiletype('javascript')
|
call TestFiletype('javascript')
|
||||||
call TestFiletype('flow')
|
call TestFiletype('flow')
|
||||||
call TestFiletype('Jenkinsfile')
|
call TestFiletype('Jenkinsfile')
|
||||||
@@ -118,7 +119,6 @@ call TestFiletype('json5')
|
|||||||
call TestFiletype('json')
|
call TestFiletype('json')
|
||||||
call TestFiletype('jsonnet')
|
call TestFiletype('jsonnet')
|
||||||
call TestFiletype('jst')
|
call TestFiletype('jst')
|
||||||
call TestFiletype('javascriptreact')
|
|
||||||
call TestFiletype('julia')
|
call TestFiletype('julia')
|
||||||
call TestFiletype('kotlin')
|
call TestFiletype('kotlin')
|
||||||
call TestFiletype('ledger')
|
call TestFiletype('ledger')
|
||||||
|
|||||||
@@ -424,8 +424,8 @@ function! s:hi()
|
|||||||
|
|
||||||
" :GoDebug commands
|
" :GoDebug commands
|
||||||
if go#config#HighlightDebug()
|
if go#config#HighlightDebug()
|
||||||
hi GoDebugBreakpoint term=standout ctermbg=117 ctermfg=0 guibg=#BAD4F5 guifg=Black
|
hi def GoDebugBreakpoint term=standout ctermbg=117 ctermfg=0 guibg=#BAD4F5 guifg=Black
|
||||||
hi GoDebugCurrent term=reverse ctermbg=12 ctermfg=7 guibg=DarkBlue guifg=White
|
hi def GoDebugCurrent term=reverse ctermbg=12 ctermfg=7 guibg=DarkBlue guifg=White
|
||||||
endif
|
endif
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
|||||||
454
syntax/groovy.vim
Normal file
454
syntax/groovy.vim
Normal file
@@ -0,0 +1,454 @@
|
|||||||
|
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'groovy') == -1
|
||||||
|
|
||||||
|
" Vim syntax file
|
||||||
|
" Language: Groovy
|
||||||
|
" Original Author: Alessio Pace <billy.corgan AT tiscali.it>
|
||||||
|
" Maintainer: Tobias Rapp <yahuxo+vim AT mailbox.org>
|
||||||
|
" Version: 0.1.17
|
||||||
|
" URL: http://www.vim.org/scripts/script.php?script_id=945
|
||||||
|
" Last Change: 2020 May 26
|
||||||
|
|
||||||
|
" THE ORIGINAL AUTHOR'S NOTES:
|
||||||
|
"
|
||||||
|
" This is my very first vim script, I hope to have
|
||||||
|
" done it the right way.
|
||||||
|
"
|
||||||
|
" I must directly or indirectly thank the author of java.vim and ruby.vim:
|
||||||
|
" I copied from them most of the stuff :-)
|
||||||
|
"
|
||||||
|
" Relies on html.vim
|
||||||
|
|
||||||
|
" For version 5.x: Clear all syntax items
|
||||||
|
" For version 6.x: Quit when a syntax file was already loaded
|
||||||
|
"
|
||||||
|
" HOWTO USE IT (INSTALL) when not part of the distribution:
|
||||||
|
"
|
||||||
|
" 1) copy the file in the (global or user's $HOME/.vim/syntax/) syntax folder
|
||||||
|
"
|
||||||
|
" 2) add this line to recognize groovy files by filename extension:
|
||||||
|
"
|
||||||
|
" au BufNewFile,BufRead *.groovy setf groovy
|
||||||
|
" in the global vim filetype.vim file or inside $HOME/.vim/filetype.vim
|
||||||
|
"
|
||||||
|
" 3) add this part to recognize by content groovy script (no extension needed :-)
|
||||||
|
"
|
||||||
|
" if did_filetype()
|
||||||
|
" finish
|
||||||
|
" endif
|
||||||
|
" if getline(1) =~ '^#!.*[/\\]groovy\>'
|
||||||
|
" setf groovy
|
||||||
|
" endif
|
||||||
|
"
|
||||||
|
" in the global scripts.vim file or in $HOME/.vim/scripts.vim
|
||||||
|
"
|
||||||
|
" 4) open/write a .groovy file or a groovy script :-)
|
||||||
|
"
|
||||||
|
" Let me know if you like it or send me patches, so that I can improve it
|
||||||
|
" when I have time
|
||||||
|
|
||||||
|
" quit when a syntax file was already loaded
|
||||||
|
if !exists("main_syntax")
|
||||||
|
if exists("b:current_syntax")
|
||||||
|
finish
|
||||||
|
endif
|
||||||
|
" we define it here so that included files can test for it
|
||||||
|
let main_syntax='groovy'
|
||||||
|
endif
|
||||||
|
|
||||||
|
let s:cpo_save = &cpo
|
||||||
|
set cpo&vim
|
||||||
|
|
||||||
|
" ##########################
|
||||||
|
" Java stuff taken from java.vim
|
||||||
|
" some characters that cannot be in a groovy program (outside a string)
|
||||||
|
" syn match groovyError "[\\@`]"
|
||||||
|
"syn match groovyError "<<<\|\.\.\|=>\|<>\|||=\|&&=\|[^-]->\|\*\/"
|
||||||
|
"syn match groovyOK "\.\.\."
|
||||||
|
|
||||||
|
" keyword definitions
|
||||||
|
syn keyword groovyExternal native package
|
||||||
|
syn match groovyExternal "\<import\>\(\s\+static\>\)\?"
|
||||||
|
syn keyword groovyError goto const
|
||||||
|
syn keyword groovyConditional if else switch
|
||||||
|
syn keyword groovyRepeat while for do
|
||||||
|
syn keyword groovyBoolean true false
|
||||||
|
syn keyword groovyConstant null
|
||||||
|
syn keyword groovyTypedef this super
|
||||||
|
syn keyword groovyOperator new instanceof
|
||||||
|
syn keyword groovyType boolean char byte short int long float double
|
||||||
|
syn keyword groovyType void
|
||||||
|
syn keyword groovyType Integer Double Date Boolean Float String Array Vector List
|
||||||
|
syn keyword groovyStatement return
|
||||||
|
syn keyword groovyStorageClass static synchronized transient volatile final strictfp serializable
|
||||||
|
syn keyword groovyExceptions throw try catch finally
|
||||||
|
syn keyword groovyAssert assert
|
||||||
|
syn keyword groovyMethodDecl synchronized throws
|
||||||
|
syn keyword groovyClassDecl extends implements interface
|
||||||
|
" to differentiate the keyword class from MyClass.class we use a match here
|
||||||
|
syn match groovyTypedef "\.\s*\<class\>"ms=s+1
|
||||||
|
syn keyword groovyClassDecl enum
|
||||||
|
syn match groovyClassDecl "^class\>"
|
||||||
|
syn match groovyClassDecl "[^.]\s*\<class\>"ms=s+1
|
||||||
|
syn keyword groovyBranch break continue nextgroup=groovyUserLabelRef skipwhite
|
||||||
|
syn match groovyUserLabelRef "\k\+" contained
|
||||||
|
syn keyword groovyScopeDecl public protected private abstract
|
||||||
|
|
||||||
|
|
||||||
|
if exists("groovy_highlight_groovy_lang_ids") || exists("groovy_highlight_groovy_lang") || exists("groovy_highlight_all")
|
||||||
|
" groovy.lang.*
|
||||||
|
syn keyword groovyLangClass Closure MetaMethod GroovyObject
|
||||||
|
|
||||||
|
syn match groovyJavaLangClass "\<System\>"
|
||||||
|
syn keyword groovyJavaLangClass Cloneable Comparable Runnable Serializable Boolean Byte Class Object
|
||||||
|
syn keyword groovyJavaLangClass Character CharSequence ClassLoader Compiler
|
||||||
|
" syn keyword groovyJavaLangClass Integer Double Float Long
|
||||||
|
syn keyword groovyJavaLangClass InheritableThreadLocal Math Number Object Package Process
|
||||||
|
syn keyword groovyJavaLangClass Runtime RuntimePermission InheritableThreadLocal
|
||||||
|
syn keyword groovyJavaLangClass SecurityManager Short StrictMath StackTraceElement
|
||||||
|
syn keyword groovyJavaLangClass StringBuffer Thread ThreadGroup
|
||||||
|
syn keyword groovyJavaLangClass ThreadLocal Throwable Void ArithmeticException
|
||||||
|
syn keyword groovyJavaLangClass ArrayIndexOutOfBoundsException AssertionError
|
||||||
|
syn keyword groovyJavaLangClass ArrayStoreException ClassCastException
|
||||||
|
syn keyword groovyJavaLangClass ClassNotFoundException
|
||||||
|
syn keyword groovyJavaLangClass CloneNotSupportedException Exception
|
||||||
|
syn keyword groovyJavaLangClass IllegalAccessException
|
||||||
|
syn keyword groovyJavaLangClass IllegalArgumentException
|
||||||
|
syn keyword groovyJavaLangClass IllegalMonitorStateException
|
||||||
|
syn keyword groovyJavaLangClass IllegalStateException
|
||||||
|
syn keyword groovyJavaLangClass IllegalThreadStateException
|
||||||
|
syn keyword groovyJavaLangClass IndexOutOfBoundsException
|
||||||
|
syn keyword groovyJavaLangClass InstantiationException InterruptedException
|
||||||
|
syn keyword groovyJavaLangClass NegativeArraySizeException NoSuchFieldException
|
||||||
|
syn keyword groovyJavaLangClass NoSuchMethodException NullPointerException
|
||||||
|
syn keyword groovyJavaLangClass NumberFormatException RuntimeException
|
||||||
|
syn keyword groovyJavaLangClass SecurityException StringIndexOutOfBoundsException
|
||||||
|
syn keyword groovyJavaLangClass UnsupportedOperationException
|
||||||
|
syn keyword groovyJavaLangClass AbstractMethodError ClassCircularityError
|
||||||
|
syn keyword groovyJavaLangClass ClassFormatError Error ExceptionInInitializerError
|
||||||
|
syn keyword groovyJavaLangClass IllegalAccessError InstantiationError
|
||||||
|
syn keyword groovyJavaLangClass IncompatibleClassChangeError InternalError
|
||||||
|
syn keyword groovyJavaLangClass LinkageError NoClassDefFoundError
|
||||||
|
syn keyword groovyJavaLangClass NoSuchFieldError NoSuchMethodError
|
||||||
|
syn keyword groovyJavaLangClass OutOfMemoryError StackOverflowError
|
||||||
|
syn keyword groovyJavaLangClass ThreadDeath UnknownError UnsatisfiedLinkError
|
||||||
|
syn keyword groovyJavaLangClass UnsupportedClassVersionError VerifyError
|
||||||
|
syn keyword groovyJavaLangClass VirtualMachineError
|
||||||
|
|
||||||
|
syn keyword groovyJavaLangObject clone equals finalize getClass hashCode
|
||||||
|
syn keyword groovyJavaLangObject notify notifyAll toString wait
|
||||||
|
|
||||||
|
hi def link groovyLangClass groovyConstant
|
||||||
|
hi def link groovyJavaLangClass groovyExternal
|
||||||
|
hi def link groovyJavaLangObject groovyConstant
|
||||||
|
syn cluster groovyTop add=groovyJavaLangObject,groovyJavaLangClass,groovyLangClass
|
||||||
|
syn cluster groovyClasses add=groovyJavaLangClass,groovyLangClass
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
" Groovy stuff
|
||||||
|
syn match groovyOperator "\.\."
|
||||||
|
syn match groovyOperator "<\{2,3}"
|
||||||
|
syn match groovyOperator ">\{2,3}"
|
||||||
|
syn match groovyOperator "->"
|
||||||
|
syn match groovyLineComment '^\%1l#!.*' " Shebang line
|
||||||
|
syn match groovyExceptions "\<Exception\>\|\<[A-Z]\{1,}[a-zA-Z0-9]*Exception\>"
|
||||||
|
|
||||||
|
" Groovy JDK stuff
|
||||||
|
syn keyword groovyJDKBuiltin as def in
|
||||||
|
syn keyword groovyJDKOperOverl div minus plus abs round power multiply
|
||||||
|
syn keyword groovyJDKMethods each call inject sort print println
|
||||||
|
syn keyword groovyJDKMethods getAt putAt size push pop toList getText writeLine eachLine readLines
|
||||||
|
syn keyword groovyJDKMethods withReader withStream withWriter withPrintWriter write read leftShift
|
||||||
|
syn keyword groovyJDKMethods withWriterAppend readBytes splitEachLine
|
||||||
|
syn keyword groovyJDKMethods newInputStream newOutputStream newPrintWriter newReader newWriter
|
||||||
|
syn keyword groovyJDKMethods compareTo next previous isCase
|
||||||
|
syn keyword groovyJDKMethods times step toInteger upto any collect dump every find findAll grep
|
||||||
|
syn keyword groovyJDKMethods inspect invokeMethods join
|
||||||
|
syn keyword groovyJDKMethods getErr getIn getOut waitForOrKill
|
||||||
|
syn keyword groovyJDKMethods count tokenize asList flatten immutable intersect reverse reverseEach
|
||||||
|
syn keyword groovyJDKMethods subMap append asWritable eachByte eachLine eachFile
|
||||||
|
syn cluster groovyTop add=groovyJDKBuiltin,groovyJDKOperOverl,groovyJDKMethods
|
||||||
|
|
||||||
|
" no useful I think, so I comment it..
|
||||||
|
"if filereadable(expand("<sfile>:p:h")."/groovyid.vim")
|
||||||
|
" source <sfile>:p:h/groovyid.vim
|
||||||
|
"endif
|
||||||
|
|
||||||
|
if exists("groovy_space_errors")
|
||||||
|
if !exists("groovy_no_trail_space_error")
|
||||||
|
syn match groovySpaceError "\s\+$"
|
||||||
|
endif
|
||||||
|
if !exists("groovy_no_tab_space_error")
|
||||||
|
syn match groovySpaceError " \+\t"me=e-1
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
" it is a better case construct than java.vim to match groovy syntax
|
||||||
|
syn region groovyLabelRegion transparent matchgroup=groovyLabel start="\<case\>" matchgroup=NONE end=":\|$" contains=groovyNumber,groovyString,groovyLangClass,groovyJavaLangClass
|
||||||
|
syn match groovyUserLabel "^\s*[_$a-zA-Z][_$a-zA-Z0-9_]*\s*:"he=e-1 contains=groovyLabel
|
||||||
|
syn keyword groovyLabel default
|
||||||
|
|
||||||
|
if !exists("groovy_allow_cpp_keywords")
|
||||||
|
syn keyword groovyError auto delete extern friend inline redeclared
|
||||||
|
syn keyword groovyError register signed sizeof struct template typedef union
|
||||||
|
syn keyword groovyError unsigned operator
|
||||||
|
endif
|
||||||
|
|
||||||
|
" The following cluster contains all groovy groups except the contained ones
|
||||||
|
syn cluster groovyTop add=groovyExternal,groovyError,groovyError,groovyBranch,groovyLabelRegion,groovyLabel,groovyConditional,groovyRepeat,groovyBoolean,groovyConstant,groovyTypedef,groovyOperator,groovyType,groovyType,groovyStatement,groovyStorageClass,groovyAssert,groovyExceptions,groovyMethodDecl,groovyClassDecl,groovyClassDecl,groovyClassDecl,groovyScopeDecl,groovyError,groovyError2,groovyUserLabel,groovyLangObject
|
||||||
|
|
||||||
|
|
||||||
|
" Comments
|
||||||
|
syn keyword groovyTodo contained TODO FIXME XXX
|
||||||
|
if exists("groovy_comment_strings")
|
||||||
|
syn region groovyCommentString contained start=+"+ end=+"+ end=+$+ end=+\*/+me=s-1,he=s-1 contains=groovySpecial,groovyCommentStar,groovySpecialChar,@Spell
|
||||||
|
syn region groovyComment2String contained start=+"+ end=+$\|"+ contains=groovySpecial,groovySpecialChar,@Spell
|
||||||
|
syn match groovyCommentCharacter contained "'\\[^']\{1,6\}'" contains=groovySpecialChar
|
||||||
|
syn match groovyCommentCharacter contained "'\\''" contains=groovySpecialChar
|
||||||
|
syn match groovyCommentCharacter contained "'[^\\]'"
|
||||||
|
syn cluster groovyCommentSpecial add=groovyCommentString,groovyCommentCharacter,groovyNumber
|
||||||
|
syn cluster groovyCommentSpecial2 add=groovyComment2String,groovyCommentCharacter,groovyNumber
|
||||||
|
endif
|
||||||
|
syn region groovyComment start="/\*" end="\*/" contains=@groovyCommentSpecial,groovyTodo,@Spell
|
||||||
|
syn match groovyCommentStar contained "^\s*\*[^/]"me=e-1
|
||||||
|
syn match groovyCommentStar contained "^\s*\*$"
|
||||||
|
syn match groovyLineComment "//.*" contains=@groovyCommentSpecial2,groovyTodo,@Spell
|
||||||
|
hi def link groovyCommentString groovyString
|
||||||
|
hi def link groovyComment2String groovyString
|
||||||
|
hi def link groovyCommentCharacter groovyCharacter
|
||||||
|
|
||||||
|
syn cluster groovyTop add=groovyComment,groovyLineComment
|
||||||
|
|
||||||
|
if !exists("groovy_ignore_groovydoc") && main_syntax != 'jsp'
|
||||||
|
syntax case ignore
|
||||||
|
" syntax coloring for groovydoc comments (HTML)
|
||||||
|
" syntax include @groovyHtml <sfile>:p:h/html.vim
|
||||||
|
syntax include @groovyHtml runtime! syntax/html.vim
|
||||||
|
unlet b:current_syntax
|
||||||
|
syntax spell default " added by Bram
|
||||||
|
syn region groovyDocComment start="/\*\*" end="\*/" keepend contains=groovyCommentTitle,@groovyHtml,groovyDocTags,groovyTodo,@Spell
|
||||||
|
syn region groovyCommentTitle contained matchgroup=groovyDocComment start="/\*\*" matchgroup=groovyCommentTitle keepend end="\.$" end="\.[ \t\r<&]"me=e-1 end="[^{]@"me=s-2,he=s-1 end="\*/"me=s-1,he=s-1 contains=@groovyHtml,groovyCommentStar,groovyTodo,@Spell,groovyDocTags
|
||||||
|
|
||||||
|
syn region groovyDocTags contained start="{@\(link\|linkplain\|inherit[Dd]oc\|doc[rR]oot\|value\)" end="}"
|
||||||
|
syn match groovyDocTags contained "@\(see\|param\|exception\|throws\|since\)\s\+\S\+" contains=groovyDocParam
|
||||||
|
syn match groovyDocParam contained "\s\S\+"
|
||||||
|
syn match groovyDocTags contained "@\(version\|author\|return\|deprecated\|serial\|serialField\|serialData\)\>"
|
||||||
|
syntax case match
|
||||||
|
endif
|
||||||
|
|
||||||
|
" match the special comment /**/
|
||||||
|
syn match groovyComment "/\*\*/"
|
||||||
|
|
||||||
|
" Strings and constants
|
||||||
|
syn match groovySpecialError contained "\\."
|
||||||
|
syn match groovySpecialCharError contained "[^']"
|
||||||
|
syn match groovySpecialChar contained "\\\([4-9]\d\|[0-3]\d\d\|[\"\\'ntbrf]\|u\x\{4\}\|\$\)"
|
||||||
|
syn match groovyRegexChar contained "\\."
|
||||||
|
syn region groovyString start=+"+ end=+"+ end=+$+ contains=groovySpecialChar,groovySpecialError,@Spell,groovyELExpr
|
||||||
|
syn region groovyString start=+'+ end=+'+ end=+$+ contains=groovySpecialChar,groovySpecialError,@Spell
|
||||||
|
syn region groovyString start=+"""+ end=+"""+ contains=groovySpecialChar,groovySpecialError,@Spell,groovyELExpr
|
||||||
|
syn region groovyString start=+'''+ end=+'''+ contains=groovySpecialChar,groovySpecialError,@Spell
|
||||||
|
if exists("groovy_regex_strings")
|
||||||
|
" regex strings interfere with the division operator and thus are disabled
|
||||||
|
" by default
|
||||||
|
syn region groovyString start='/[^/*]' end='/' contains=groovySpecialChar,groovyRegexChar,groovyELExpr
|
||||||
|
endif
|
||||||
|
" syn region groovyELExpr start=+${+ end=+}+ keepend contained
|
||||||
|
syn match groovyELExpr /\${.\{-}}/ contained
|
||||||
|
syn match groovyELExpr /\$[a-zA-Z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\uFFFE_][a-zA-Z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\uFFFE0-9_.]*/ contained
|
||||||
|
hi def link groovyELExpr Identifier
|
||||||
|
|
||||||
|
" TODO: better matching. I am waiting to understand how it really works in groovy
|
||||||
|
" syn region groovyClosureParamsBraces start=+|+ end=+|+ contains=groovyClosureParams
|
||||||
|
" syn match groovyClosureParams "[ a-zA-Z0-9_*]\+" contained
|
||||||
|
" hi def link groovyClosureParams Identifier
|
||||||
|
|
||||||
|
" next line disabled, it can cause a crash for a long line
|
||||||
|
"syn match groovyStringError +"\([^"\\]\|\\.\)*$+
|
||||||
|
|
||||||
|
" disabled: in groovy strings or characters are written the same
|
||||||
|
" syn match groovyCharacter "'[^']*'" contains=groovySpecialChar,groovySpecialCharError
|
||||||
|
" syn match groovyCharacter "'\\''" contains=groovySpecialChar
|
||||||
|
" syn match groovyCharacter "'[^\\]'"
|
||||||
|
syn match groovyNumber "\<\(0[0-7]*\|0[xX]\x\+\|\d\+\)[lL]\=\>"
|
||||||
|
syn match groovyNumber "\(\<\d\+\.\d*\|\.\d\+\)\([eE][-+]\=\d\+\)\=[fFdD]\="
|
||||||
|
syn match groovyNumber "\<\d\+[eE][-+]\=\d\+[fFdD]\=\>"
|
||||||
|
syn match groovyNumber "\<\d\+\([eE][-+]\=\d\+\)\=[fFdD]\>"
|
||||||
|
|
||||||
|
" unicode characters
|
||||||
|
syn match groovySpecial "\\u\d\{4\}"
|
||||||
|
|
||||||
|
syn cluster groovyTop add=groovyString,groovyCharacter,groovyNumber,groovySpecial,groovyStringError
|
||||||
|
|
||||||
|
if exists("groovy_highlight_functions")
|
||||||
|
if groovy_highlight_functions == "indent"
|
||||||
|
syn match groovyFuncDef "^\(\t\| \{8\}\)[_$a-zA-Z][_$a-zA-Z0-9_. \[\]]*([^-+*/()]*)" contains=groovyScopeDecl,groovyType,groovyStorageClass,@groovyClasses
|
||||||
|
syn region groovyFuncDef start=+^\(\t\| \{8\}\)[$_a-zA-Z][$_a-zA-Z0-9_. \[\]]*([^-+*/()]*,\s*+ end=+)+ contains=groovyScopeDecl,groovyType,groovyStorageClass,@groovyClasses
|
||||||
|
syn match groovyFuncDef "^ [$_a-zA-Z][$_a-zA-Z0-9_. \[\]]*([^-+*/()]*)" contains=groovyScopeDecl,groovyType,groovyStorageClass,@groovyClasses
|
||||||
|
syn region groovyFuncDef start=+^ [$_a-zA-Z][$_a-zA-Z0-9_. \[\]]*([^-+*/()]*,\s*+ end=+)+ contains=groovyScopeDecl,groovyType,groovyStorageClass,@groovyClasses
|
||||||
|
else
|
||||||
|
" This line catches method declarations at any indentation>0, but it assumes
|
||||||
|
" two things:
|
||||||
|
" 1. class names are always capitalized (ie: Button)
|
||||||
|
" 2. method names are never capitalized (except constructors, of course)
|
||||||
|
syn region groovyFuncDef start=+^\s\+\(\(public\|protected\|private\|static\|abstract\|final\|native\|synchronized\)\s\+\)*\(\(void\|boolean\|char\|byte\|short\|int\|long\|float\|double\|\([A-Za-z_][A-Za-z0-9_$]*\.\)*[A-Z][A-Za-z0-9_$]*\)\(<[^>]*>\)\=\(\[\]\)*\s\+[a-z][A-Za-z0-9_$]*\|[A-Z][A-Za-z0-9_$]*\)\s*([^0-9]+ end=+)+ contains=groovyScopeDecl,groovyType,groovyStorageClass,groovyComment,groovyLineComment,@groovyClasses
|
||||||
|
endif
|
||||||
|
syn match groovyBraces "[{}]"
|
||||||
|
syn cluster groovyTop add=groovyFuncDef,groovyBraces
|
||||||
|
endif
|
||||||
|
|
||||||
|
if exists("groovy_highlight_debug")
|
||||||
|
|
||||||
|
" Strings and constants
|
||||||
|
syn match groovyDebugSpecial contained "\\\d\d\d\|\\."
|
||||||
|
syn region groovyDebugString contained start=+"+ end=+"+ contains=groovyDebugSpecial
|
||||||
|
syn match groovyDebugStringError +"\([^"\\]\|\\.\)*$+
|
||||||
|
syn match groovyDebugCharacter contained "'[^\\]'"
|
||||||
|
syn match groovyDebugSpecialCharacter contained "'\\.'"
|
||||||
|
syn match groovyDebugSpecialCharacter contained "'\\''"
|
||||||
|
syn match groovyDebugNumber contained "\<\(0[0-7]*\|0[xX]\x\+\|\d\+\)[lL]\=\>"
|
||||||
|
syn match groovyDebugNumber contained "\(\<\d\+\.\d*\|\.\d\+\)\([eE][-+]\=\d\+\)\=[fFdD]\="
|
||||||
|
syn match groovyDebugNumber contained "\<\d\+[eE][-+]\=\d\+[fFdD]\=\>"
|
||||||
|
syn match groovyDebugNumber contained "\<\d\+\([eE][-+]\=\d\+\)\=[fFdD]\>"
|
||||||
|
syn keyword groovyDebugBoolean contained true false
|
||||||
|
syn keyword groovyDebugType contained null this super
|
||||||
|
syn region groovyDebugParen start=+(+ end=+)+ contained contains=groovyDebug.*,groovyDebugParen
|
||||||
|
|
||||||
|
" to make this work you must define the highlighting for these groups
|
||||||
|
syn match groovyDebug "\<System\.\(out\|err\)\.print\(ln\)*\s*("me=e-1 contains=groovyDebug.* nextgroup=groovyDebugParen
|
||||||
|
syn match groovyDebug "\<p\s*("me=e-1 contains=groovyDebug.* nextgroup=groovyDebugParen
|
||||||
|
syn match groovyDebug "[A-Za-z][a-zA-Z0-9_]*\.printStackTrace\s*("me=e-1 contains=groovyDebug.* nextgroup=groovyDebugParen
|
||||||
|
syn match groovyDebug "\<trace[SL]\=\s*("me=e-1 contains=groovyDebug.* nextgroup=groovyDebugParen
|
||||||
|
|
||||||
|
syn cluster groovyTop add=groovyDebug
|
||||||
|
|
||||||
|
hi def link groovyDebug Debug
|
||||||
|
hi def link groovyDebugString DebugString
|
||||||
|
hi def link groovyDebugStringError groovyError
|
||||||
|
hi def link groovyDebugType DebugType
|
||||||
|
hi def link groovyDebugBoolean DebugBoolean
|
||||||
|
hi def link groovyDebugNumber Debug
|
||||||
|
hi def link groovyDebugSpecial DebugSpecial
|
||||||
|
hi def link groovyDebugSpecialCharacter DebugSpecial
|
||||||
|
hi def link groovyDebugCharacter DebugString
|
||||||
|
hi def link groovyDebugParen Debug
|
||||||
|
|
||||||
|
hi def link DebugString String
|
||||||
|
hi def link DebugSpecial Special
|
||||||
|
hi def link DebugBoolean Boolean
|
||||||
|
hi def link DebugType Type
|
||||||
|
endif
|
||||||
|
|
||||||
|
" Match all Exception classes
|
||||||
|
syn match groovyExceptions "\<Exception\>\|\<[A-Z]\{1,}[a-zA-Z0-9]*Exception\>"
|
||||||
|
|
||||||
|
|
||||||
|
if !exists("groovy_minlines")
|
||||||
|
let groovy_minlines = 10
|
||||||
|
endif
|
||||||
|
exec "syn sync ccomment groovyComment minlines=" . groovy_minlines
|
||||||
|
|
||||||
|
|
||||||
|
" ###################
|
||||||
|
" Groovy stuff
|
||||||
|
" syn match groovyOperator "|[ ,a-zA-Z0-9_*]\+|"
|
||||||
|
|
||||||
|
" All groovy valid tokens
|
||||||
|
" syn match groovyTokens ";\|,\|<=>\|<>\|:\|:=\|>\|>=\|=\|==\|<\|<=\|!=\|/\|/=\|\.\.|\.\.\.\|\~=\|\~=="
|
||||||
|
" syn match groovyTokens "\*=\|&\|&=\|\*\|->\|\~\|+\|-\|/\|?\|<<<\|>>>\|<<\|>>"
|
||||||
|
|
||||||
|
" Must put explicit these ones because groovy.vim mark them as errors otherwise
|
||||||
|
" syn match groovyTokens "<=>\|<>\|==\~"
|
||||||
|
"syn cluster groovyTop add=groovyTokens
|
||||||
|
|
||||||
|
" Mark these as operators
|
||||||
|
|
||||||
|
" Hightlight brackets
|
||||||
|
" syn match groovyBraces "[{}]"
|
||||||
|
" syn match groovyBraces "[\[\]]"
|
||||||
|
" syn match groovyBraces "[\|]"
|
||||||
|
|
||||||
|
if exists("groovy_mark_braces_in_parens_as_errors")
|
||||||
|
syn match groovyInParen contained "[{}]"
|
||||||
|
hi def link groovyInParen groovyError
|
||||||
|
syn cluster groovyTop add=groovyInParen
|
||||||
|
endif
|
||||||
|
|
||||||
|
" catch errors caused by wrong parenthesis
|
||||||
|
syn region groovyParenT transparent matchgroup=groovyParen start="(" end=")" contains=@groovyTop,groovyParenT1
|
||||||
|
syn region groovyParenT1 transparent matchgroup=groovyParen1 start="(" end=")" contains=@groovyTop,groovyParenT2 contained
|
||||||
|
syn region groovyParenT2 transparent matchgroup=groovyParen2 start="(" end=")" contains=@groovyTop,groovyParenT contained
|
||||||
|
syn match groovyParenError ")"
|
||||||
|
hi def link groovyParenError groovyError
|
||||||
|
|
||||||
|
" catch errors caused by wrong square parenthesis
|
||||||
|
syn region groovyParenT transparent matchgroup=groovyParen start="\[" end="\]" contains=@groovyTop,groovyParenT1
|
||||||
|
syn region groovyParenT1 transparent matchgroup=groovyParen1 start="\[" end="\]" contains=@groovyTop,groovyParenT2 contained
|
||||||
|
syn region groovyParenT2 transparent matchgroup=groovyParen2 start="\[" end="\]" contains=@groovyTop,groovyParenT contained
|
||||||
|
syn match groovyParenError "\]"
|
||||||
|
|
||||||
|
" ###############################
|
||||||
|
" java.vim default highlighting
|
||||||
|
hi def link groovyFuncDef Function
|
||||||
|
hi def link groovyBraces Function
|
||||||
|
hi def link groovyBranch Conditional
|
||||||
|
hi def link groovyUserLabelRef groovyUserLabel
|
||||||
|
hi def link groovyLabel Label
|
||||||
|
hi def link groovyUserLabel Label
|
||||||
|
hi def link groovyConditional Conditional
|
||||||
|
hi def link groovyRepeat Repeat
|
||||||
|
hi def link groovyExceptions Exception
|
||||||
|
hi def link groovyAssert Statement
|
||||||
|
hi def link groovyStorageClass StorageClass
|
||||||
|
hi def link groovyMethodDecl groovyStorageClass
|
||||||
|
hi def link groovyClassDecl groovyStorageClass
|
||||||
|
hi def link groovyScopeDecl groovyStorageClass
|
||||||
|
hi def link groovyBoolean Boolean
|
||||||
|
hi def link groovySpecial Special
|
||||||
|
hi def link groovySpecialError Error
|
||||||
|
hi def link groovySpecialCharError Error
|
||||||
|
hi def link groovyString String
|
||||||
|
hi def link groovyRegexChar String
|
||||||
|
hi def link groovyCharacter Character
|
||||||
|
hi def link groovySpecialChar SpecialChar
|
||||||
|
hi def link groovyNumber Number
|
||||||
|
hi def link groovyError Error
|
||||||
|
hi def link groovyStringError Error
|
||||||
|
hi def link groovyStatement Statement
|
||||||
|
hi def link groovyOperator Operator
|
||||||
|
hi def link groovyComment Comment
|
||||||
|
hi def link groovyDocComment Comment
|
||||||
|
hi def link groovyLineComment Comment
|
||||||
|
hi def link groovyConstant Constant
|
||||||
|
hi def link groovyTypedef Typedef
|
||||||
|
hi def link groovyTodo Todo
|
||||||
|
|
||||||
|
hi def link groovyCommentTitle SpecialComment
|
||||||
|
hi def link groovyDocTags Special
|
||||||
|
hi def link groovyDocParam Function
|
||||||
|
hi def link groovyCommentStar groovyComment
|
||||||
|
|
||||||
|
hi def link groovyType Type
|
||||||
|
hi def link groovyExternal Include
|
||||||
|
|
||||||
|
hi def link htmlComment Special
|
||||||
|
hi def link htmlCommentPart Special
|
||||||
|
hi def link groovySpaceError Error
|
||||||
|
hi def link groovyJDKBuiltin Special
|
||||||
|
hi def link groovyJDKOperOverl Operator
|
||||||
|
hi def link groovyJDKMethods Function
|
||||||
|
|
||||||
|
|
||||||
|
let b:current_syntax = "groovy"
|
||||||
|
if main_syntax == 'groovy'
|
||||||
|
unlet main_syntax
|
||||||
|
endif
|
||||||
|
|
||||||
|
let b:spell_options="contained"
|
||||||
|
|
||||||
|
let &cpo = s:cpo_save
|
||||||
|
unlet s:cpo_save
|
||||||
|
|
||||||
|
" vim: ts=8
|
||||||
|
|
||||||
|
endif
|
||||||
94
syntax/html-1.vim
Normal file
94
syntax/html-1.vim
Normal file
@@ -0,0 +1,94 @@
|
|||||||
|
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'jinja') == -1
|
||||||
|
|
||||||
|
" Vim syntax file
|
||||||
|
" Language: HTML (version 5)
|
||||||
|
" Maintainer: Rodrigo Machado <rcmachado@gmail.com>
|
||||||
|
" URL: http://rm.blog.br/vim/syntax/html.vim
|
||||||
|
" Last Change: 2009 Aug 19
|
||||||
|
" License: Public domain
|
||||||
|
" (but let me know if you like :) )
|
||||||
|
"
|
||||||
|
" Note: This file just adds the new tags from HTML 5
|
||||||
|
" and don't replace default html.vim syntax file
|
||||||
|
"
|
||||||
|
" Modified: othree <othree@gmail.com>
|
||||||
|
" Changes: update to Draft 28 August 2010
|
||||||
|
" add complete new attributes
|
||||||
|
" add wai-aria attributes
|
||||||
|
" add microdata attributes
|
||||||
|
" add rdfa attributes
|
||||||
|
|
||||||
|
|
||||||
|
syn keyword htmlTagName contained script
|
||||||
|
" HTML 5 tags
|
||||||
|
syn keyword htmlTagName contained article aside audio canvas command
|
||||||
|
syn keyword htmlTagName contained datalist details dialog embed figcaption figure footer
|
||||||
|
syn keyword htmlTagName contained header hgroup keygen mark meter menu nav output
|
||||||
|
syn keyword htmlTagName contained progress time ruby rt rp section source summary time track video wbr
|
||||||
|
|
||||||
|
" HTML 5 arguments
|
||||||
|
" Core Attributes
|
||||||
|
syn keyword htmlArg contained accesskey class contenteditable contextmenu dir
|
||||||
|
syn keyword htmlArg contained draggable hidden id lang spellcheck style tabindex title
|
||||||
|
" Event-handler Attributes
|
||||||
|
syn keyword htmlArg contained onabort onblur oncanplay oncanplaythrough onchange
|
||||||
|
syn keyword htmlArg contained onclick oncontextmenu ondblclick ondrag ondragend ondragenter ondragleave ondragover
|
||||||
|
syn keyword htmlArg contained ondragstart ondrop ondurationchange onemptied onended onerror onfocus onformchange
|
||||||
|
syn keyword htmlArg contained onforminput oninput oninvalid onkeydown onkeypress onkeyup onload onloadeddata
|
||||||
|
syn keyword htmlArg contained onloadedmetadata onloadstart onmousedown onmousemove onmouseout onmouseover onmouseup
|
||||||
|
syn keyword htmlArg contained onmousewheel onpause onplay onplaying onprogress onratechange onreadystatechange
|
||||||
|
syn keyword htmlArg contained onscroll onseeked onseeking onselect onshow onstalled onsubmit onsuspend ontimeupdate
|
||||||
|
syn keyword htmlArg contained onvolumechange onwaiting
|
||||||
|
" XML Attributes
|
||||||
|
syn keyword htmlArg contained xml:lang xml:space xml:base
|
||||||
|
" new features
|
||||||
|
" <body>
|
||||||
|
syn keyword htmlArg contained onafterprint onbeforeprint onbeforeunload onblur onerror onfocus onhashchange onload
|
||||||
|
syn keyword htmlArg contained onmessage onoffline ononline onpopstate onredo onresize onstorage onundo onunload
|
||||||
|
" <video>, <audio>, <source>, <track>
|
||||||
|
syn keyword htmlArg contained autoplay preload controls loop poster media kind charset srclang track
|
||||||
|
" <form>, <input>, <button>
|
||||||
|
syn keyword htmlArg contained form autocomplete autofocus list min max step
|
||||||
|
syn keyword htmlArg contained formaction autofocus formenctype formmethod formtarget formnovalidate
|
||||||
|
" <command>, <details>, <time>
|
||||||
|
syn keyword htmlArg contained label icon open datetime pubdate
|
||||||
|
|
||||||
|
" Custom Data Attributes
|
||||||
|
" http://dev.w3.org/html5/spec/Overview.html#custom-data-attribute
|
||||||
|
syn match htmlArg "\<\(data(\-[a-z]\+)\+\)=" contained
|
||||||
|
|
||||||
|
" Microdata
|
||||||
|
" http://dev.w3.org/html5/md/
|
||||||
|
syn keyword htmlArg contained item itemid itemscope itemtype itemprop
|
||||||
|
|
||||||
|
" RDFa
|
||||||
|
" http://www.w3.org/TR/rdfa-syntax/#a_xhtmlrdfa_dtd
|
||||||
|
syn keyword htmlArg contained about typeof property resource content datatype rel rev
|
||||||
|
|
||||||
|
" WAI-ARIA States and Properties
|
||||||
|
" http://www.w3.org/TR/wai-aria/states_and_properties
|
||||||
|
syn keyword htmlArg contained role
|
||||||
|
" Global States and Properties
|
||||||
|
syn match htmlArg contained "\<aria-\(atomic\|busy\|controls\|describedby\)\>"
|
||||||
|
syn match htmlArg contained "\<aria-\(disabled\|dropeffect\|flowto\|grabbed\)\>"
|
||||||
|
syn match htmlArg contained "\<aria-\(haspopup\|hidden\|invalid\|label\)\>"
|
||||||
|
syn match htmlArg contained "\<aria-\(labelledby\|live\|owns\|relevant\)\>"
|
||||||
|
|
||||||
|
" Widget Attributes
|
||||||
|
syn match htmlArg contained "\<aria-\(autocomplete\|checked\|disabled\|expanded\)\>"
|
||||||
|
syn match htmlArg contained "\<aria-\(haspopup\|hidden\|invalid\|label\)\>"
|
||||||
|
syn match htmlArg contained "\<aria-\(level\|multiline\|multiselectable\|orientation\)\>"
|
||||||
|
syn match htmlArg contained "\<aria-\(pressed\|readonly\|required\|selected\)\>"
|
||||||
|
syn match htmlArg contained "\<aria-\(sort\|valuemax\|valuemin\|valuenow\|valuetext\|\)\>"
|
||||||
|
|
||||||
|
" Live Region Attributes
|
||||||
|
syn match htmlArg contained "\<aria-\(atomic\|busy\|live\|relevant\|\)\>"
|
||||||
|
|
||||||
|
" Drag-and-Drop attributes
|
||||||
|
syn match htmlArg contained "\<aria-\(dropeffect\|grabbed\)\>"
|
||||||
|
|
||||||
|
" Relationship Attributes
|
||||||
|
syn match htmlArg contained "\<aria-\(activedescendant\|controls\|describedby\|flowto\|\)\>"
|
||||||
|
syn match htmlArg contained "\<aria-\(labelledby\|owns\|posinset\|setsize\|\)\>"
|
||||||
|
|
||||||
|
endif
|
||||||
196
syntax/html-2.vim
Normal file
196
syntax/html-2.vim
Normal file
@@ -0,0 +1,196 @@
|
|||||||
|
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'html5') == -1
|
||||||
|
|
||||||
|
" Vim syntax file
|
||||||
|
" Language: HTML (version 5.1)
|
||||||
|
" SVG (SVG 1.1 Second Edition)
|
||||||
|
" MathML (MathML 3.0 Second Edition)
|
||||||
|
" Last Change: 2017 Mar 07
|
||||||
|
" License: Public domain
|
||||||
|
" (but let me know if you like :) )
|
||||||
|
"
|
||||||
|
" Note: This file just add new tags from HTML 5
|
||||||
|
" and don't replace default html.vim syntax file
|
||||||
|
"
|
||||||
|
" Maintainer: Kao, Wei-Ko(othree) ( othree AT gmail DOT com )
|
||||||
|
" Changes: update to Draft 2016 Jan 13
|
||||||
|
" add microdata Attributes
|
||||||
|
" Maintainer: Rodrigo Machado <rcmachado@gmail.com>
|
||||||
|
" URL: http://rm.blog.br/vim/syntax/html.vim
|
||||||
|
" Modified: htdebeer <H.T.de.Beer@gmail.com>
|
||||||
|
" Changes: add common SVG elements and attributes for inline SVG
|
||||||
|
|
||||||
|
" Patch 7.4.1142
|
||||||
|
if has("patch-7.4-1142")
|
||||||
|
if has("win32")
|
||||||
|
syn iskeyword @,48-57,_,128-167,224-235,-
|
||||||
|
else
|
||||||
|
syn iskeyword @,48-57,_,192-255,-
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
" HTML 5 tags
|
||||||
|
syn keyword htmlTagName contained article aside audio canvas command
|
||||||
|
syn keyword htmlTagName contained datalist details dialog embed figcaption figure footer
|
||||||
|
syn keyword htmlTagName contained header hgroup keygen main mark meter menu menuitem nav output
|
||||||
|
syn keyword htmlTagName contained progress ruby rt rp rb rtc section source summary time track video data
|
||||||
|
syn keyword htmlTagName contained template content shadow slot
|
||||||
|
syn keyword htmlTagName contained wbr bdi
|
||||||
|
syn keyword htmlTagName contained picture
|
||||||
|
|
||||||
|
" SVG tags
|
||||||
|
" http://www.w3.org/TR/SVG/
|
||||||
|
" as found in http://www.w3.org/TR/SVG/eltindex.html
|
||||||
|
syn keyword htmlTagName contained svg
|
||||||
|
syn keyword htmlTagName contained altGlyph altGlyphDef altGlyphItem
|
||||||
|
syn keyword htmlTagName contained animate animateColor animateMotion animateTransform
|
||||||
|
syn keyword htmlTagName contained circle ellipse rect line polyline polygon image path
|
||||||
|
syn keyword htmlTagName contained clipPath color-profile cursor
|
||||||
|
syn keyword htmlTagName contained defs desc g symbol view use switch foreignObject
|
||||||
|
syn keyword htmlTagName contained filter feBlend feColorMatrix feComponentTransfer feComposite feConvolveMatrix feDiffuseLighting feDisplacementMap feDistantLight feFlood feFuncA feFuncB feFuncG feFuncR feGaussianBlur feImage feMerge feMergeNode feMorphology feOffset fePointLight feSpecularLighting feSpotLight feTile feTurbulence
|
||||||
|
syn keyword htmlTagName contained font font-face font-face-format font-face-name font-face-src font-face-uri
|
||||||
|
syn keyword htmlTagName contained glyph glyphRef hkern
|
||||||
|
syn keyword htmlTagName contained linearGradient marker mask pattern radialGradient set stop
|
||||||
|
syn keyword htmlTagName contained missing-glyph mpath
|
||||||
|
syn keyword htmlTagName contained text textPath tref tspan vkern
|
||||||
|
syn keyword htmlTagName contained metadata title
|
||||||
|
|
||||||
|
" MathML tags
|
||||||
|
" https://www.w3.org/TR/MathML3/appendixi.html#index.elem
|
||||||
|
syn keyword htmlTagName contained abs and annotation annotation-xml apply approx arccos arccosh arccot arccoth
|
||||||
|
syn keyword htmlTagName contained arccsc arccsch arcsec arcsech arcsin arcsinh arctan arctanh arg bind
|
||||||
|
syn keyword htmlTagName contained bvar card cartesianproduct cbytes ceiling cerror ci cn codomain complexes
|
||||||
|
syn keyword htmlTagName contained compose condition conjugate cos cosh cot coth cs csc csch
|
||||||
|
syn keyword htmlTagName contained csymbol curl declare degree determinant diff divergence divide domain domainofapplication
|
||||||
|
syn keyword htmlTagName contained emptyset eq equivalent eulergamma exists exp exponentiale factorial factorof false
|
||||||
|
syn keyword htmlTagName contained floor fn forall gcd geq grad gt ident image imaginary
|
||||||
|
syn keyword htmlTagName contained imaginaryi implies in infinity int integers intersect interval inverse lambda
|
||||||
|
syn keyword htmlTagName contained laplacian lcm leq limit list ln log logbase lowlimit lt
|
||||||
|
syn keyword htmlTagName contained maction maligngroup malignmark math matrix matrixrow max mean median menclose
|
||||||
|
syn keyword htmlTagName contained merror mfenced mfrac mglyph mi mi" min minus mlabeledtr mlongdiv
|
||||||
|
syn keyword htmlTagName contained mmultiscripts mn mo mode moment momentabout mover mpadded mphantom mprescripts
|
||||||
|
syn keyword htmlTagName contained mroot mrow ms mscarries mscarry msgroup msline mspace msqrt msrow
|
||||||
|
syn keyword htmlTagName contained mstack mstyle msub msubsup msup mtable mtd mtext mtr munder
|
||||||
|
syn keyword htmlTagName contained munderover naturalnumbers neq none not notanumber notin notprsubset notsubset or
|
||||||
|
syn keyword htmlTagName contained otherwise outerproduct partialdiff pi piece piecewise plus power primes product
|
||||||
|
syn keyword htmlTagName contained prsubset quotient rationals real reals reln rem root scalarproduct sdev
|
||||||
|
syn keyword htmlTagName contained sec sech selector semantics sep set setdiff share sin sinh
|
||||||
|
syn keyword htmlTagName contained span subset sum tan tanh tendsto times transpose true union
|
||||||
|
syn keyword htmlTagName contained uplimit variance vector vectorproduct xor
|
||||||
|
|
||||||
|
" Custom Element
|
||||||
|
syn match htmlTagName contained "\<[a-z][-.0-9_a-z]*-[-.0-9_a-z]*\>"
|
||||||
|
syn match htmlTagName contained "[.0-9_a-z]\@<=-[-.0-9_a-z]*\>"
|
||||||
|
|
||||||
|
" HTML 5 arguments
|
||||||
|
" Core Attributes
|
||||||
|
syn keyword htmlArg contained accesskey class contenteditable contextmenu dir
|
||||||
|
syn keyword htmlArg contained draggable hidden id is lang spellcheck style tabindex title translate
|
||||||
|
" Event-handler Attributes
|
||||||
|
syn keyword htmlArg contained onabort onblur oncanplay oncanplaythrough onchange
|
||||||
|
syn keyword htmlArg contained onclick oncontextmenu ondblclick ondrag ondragend ondragenter ondragleave ondragover
|
||||||
|
syn keyword htmlArg contained ondragstart ondrop ondurationchange onemptied onended onerror onfocus onformchange
|
||||||
|
syn keyword htmlArg contained onforminput oninput oninvalid onkeydown onkeypress onkeyup onload onloadeddata
|
||||||
|
syn keyword htmlArg contained onloadedmetadata onloadstart onmousedown onmousemove onmouseout onmouseover onmouseup
|
||||||
|
syn keyword htmlArg contained onmousewheel onpause onplay onplaying onprogress onratechange onreadystatechange
|
||||||
|
syn keyword htmlArg contained onscroll onseeked onseeking onselect onshow onstalled onsubmit onsuspend ontimeupdate
|
||||||
|
syn keyword htmlArg contained onvolumechange onwaiting
|
||||||
|
" XML Attributes
|
||||||
|
syn keyword htmlArg contained xml:lang xml:space xml:base xmlns
|
||||||
|
" new features
|
||||||
|
" <body>
|
||||||
|
syn keyword htmlArg contained onafterprint onbeforeprint onbeforeunload onblur onerror onfocus onhashchange onload
|
||||||
|
syn keyword htmlArg contained onmessage onoffline ononline onpopstate onredo onresize onstorage onundo onunload
|
||||||
|
" <video>, <audio>, <source>, <track>
|
||||||
|
syn keyword htmlArg contained autoplay preload controls loop poster media kind charset srclang track playsinline
|
||||||
|
" <form>, <input>, <button>
|
||||||
|
syn keyword htmlArg contained form autocomplete autofocus list min max step
|
||||||
|
syn keyword htmlArg contained formaction autofocus formenctype formmethod formtarget formnovalidate
|
||||||
|
syn keyword htmlArg contained required placeholder pattern
|
||||||
|
" <command>, <details>, <time>
|
||||||
|
syn keyword htmlArg contained label icon open datetime-local pubdate
|
||||||
|
" <script>
|
||||||
|
syn keyword htmlArg contained async
|
||||||
|
" <content>
|
||||||
|
syn keyword htmlArg contained select
|
||||||
|
" <iframe>
|
||||||
|
syn keyword htmlArg contained seamless srcdoc sandbox allowfullscreen allowusermedia allowpaymentrequest allowpresentation
|
||||||
|
" <picture>
|
||||||
|
syn keyword htmlArg contained srcset sizes
|
||||||
|
" <a>
|
||||||
|
syn keyword htmlArg contained download media
|
||||||
|
" <script>, <style>
|
||||||
|
syn keyword htmlArg contained nonce
|
||||||
|
" <area>, <a>, <img>, <iframe>, <link>
|
||||||
|
syn keyword htmlArg contained referrerpolicy
|
||||||
|
" https://w3c.github.io/webappsec-subresource-integrity/#the-integrity-attribute
|
||||||
|
syn keyword htmlArg contained integrity crossorigin
|
||||||
|
" <link>
|
||||||
|
syn keyword htmlArg contained prefetch
|
||||||
|
" syn keyword htmlArg contained preload
|
||||||
|
" <img>
|
||||||
|
syn keyword htmlArg contained decoding
|
||||||
|
" https://w3c.github.io/selection-api/#extensions-to-globaleventhandlers
|
||||||
|
syn keyword htmlArg contained onselectstart onselectionchange
|
||||||
|
" https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement/loading
|
||||||
|
syn keyword htmlArg contained loading
|
||||||
|
|
||||||
|
" Custom Data Attributes
|
||||||
|
" http://w3c.github.io/html/single-page.html#embedding-custom-non-visible-data-with-the-data-attributes
|
||||||
|
syn match htmlArg "\<data[-.0-9_a-z]*-[-.0-9_a-z]*\>" contained
|
||||||
|
|
||||||
|
" Vendor Extension Attributes
|
||||||
|
" http://w3c.github.io/html/single-page.html#conformance-requirements-extensibility
|
||||||
|
syn match htmlArg "\<x[-.0-9_a-z]*-[-.0-9_a-z]*\>" contained
|
||||||
|
|
||||||
|
" Microdata
|
||||||
|
" http://dev.w3.org/html5/md/
|
||||||
|
syn keyword htmlArg contained itemid itemscope itemtype itemprop itemref
|
||||||
|
|
||||||
|
" SVG
|
||||||
|
" http://www.w3.org/TR/SVG/
|
||||||
|
" Some common attributes from http://www.w3.org/TR/SVG/attindex.html
|
||||||
|
syn keyword htmlArg contained accent-height accumulate additive alphabetic amplitude arabic-form ascent attributeName attributeType azimuth
|
||||||
|
syn keyword htmlArg contained baseFrequency baseProfile bbox begin bias by
|
||||||
|
syn keyword htmlArg contained calcMode cap-height class clipPathUnits contentScriptType contentStyleType cx cy
|
||||||
|
syn keyword htmlArg contained d descent diffuseConstant divisor dur dx dy
|
||||||
|
syn keyword htmlArg contained edgeMode elevation end exponent externalResourcesRequired
|
||||||
|
syn keyword htmlArg contained fill filterRes filterUnits font-family font-size font-stretch font-style font-variant font-weight format format from fx fy
|
||||||
|
syn keyword htmlArg contained g1 g2 glyph-name glyphRef gradientTransform gradientUnits
|
||||||
|
syn keyword htmlArg contained hanging height horiz-adv-x horiz-origin-x horiz-origin-y
|
||||||
|
syn keyword htmlArg contained id ideographic in in2 intercept
|
||||||
|
syn keyword htmlArg contained k k1 k2 k3 k4 kernelMatrix kernelUnitLength keyPoints keySplines keyTimes
|
||||||
|
syn keyword htmlArg contained lang lengthAdjust limitingConeAngle local
|
||||||
|
syn keyword htmlArg contained markerHeight markerUnits markerWidth maskContentUnits maskUnits mathematical max media method min mode name
|
||||||
|
syn keyword htmlArg contained numOctaves
|
||||||
|
syn keyword htmlArg contained offset onabort onactivate onbegin onclick onend onerror onfocusin onfocusout onload onmousedown onmousemove onmouseout onmouseover onmouseup onrepeat onresize onscroll onunload onzoom operator order orient orientation origin overline-position overline-thickness
|
||||||
|
syn keyword htmlArg contained panose-1 path pathLength patternContentUnits patternTransform patternUnits points pointsAtX pointsAtY pointsAtZ preserveAlpha preserveAspectRatio primitiveUnits
|
||||||
|
syn keyword htmlArg contained r radius refX refY rendering-intent repeatCount repeatDur requiredExtensions requiredFeatures restart result rotate rx ry
|
||||||
|
syn keyword htmlArg contained scale seed slope spacing specularConstant specularExponent spreadMethod startOffset stdDeviation stemh stemv stitchTiles strikethrough-position strikethrough-thickness string surfaceScale systemLanguage
|
||||||
|
syn keyword htmlArg contained tableValues target targetX targetY textLength title to transform type
|
||||||
|
syn keyword htmlArg contained u1 u2 underline-position underline-thickness unicode unicode-range units-per-em
|
||||||
|
syn keyword htmlArg contained v-alphabetic v-hanging v-ideographic v-mathematical values version vert-adv-y vert-origin-x vert-origin-y viewBox viewTarget
|
||||||
|
syn keyword htmlArg contained width widths
|
||||||
|
syn keyword htmlArg contained x x-height x1 x2 xChannelSelector xlink:actuate xlink:actuate xlink:arcrole xlink:href xlink:role xlink:show xlink:title xlink:type xml:base xml:lang xml:space
|
||||||
|
syn keyword htmlArg contained y y1 y2 yChannelSelector
|
||||||
|
syn keyword htmlArg contained z zoomAndPan
|
||||||
|
syn keyword htmlArg contained alignment-baseline baseline-shift clip-path clip-rule clip color-interpolation-filters color-interpolation color-profile color-rendering color cursor direction display dominant-baseline enable-background fill-opacity fill-rule fill filter flood-color flood-opacity font-family font-size-adjust font-size font-stretch font-style font-variant font-weight glyph-orientation-horizontal glyph-orientation-vertical image-rendering kerning letter-spacing lighting-color marker-end marker-mid marker-start mask opacity overflow pointer-events shape-rendering stop-color stop-opacity stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width stroke text-anchor text-decoration text-rendering unicode-bidi visibility word-spacing writing-mode
|
||||||
|
|
||||||
|
" MathML attributes
|
||||||
|
" https://www.w3.org/TR/MathML3/chapter2.html#interf.toplevel.atts
|
||||||
|
syn keyword htmlArg contained accent accentunder actiontype align alignmentscope altimg altimg-height altimg-valign altimg-width alttext
|
||||||
|
syn keyword htmlArg contained annotation-xml background base baseline bevelled cd cdgroup charalign charspacing close
|
||||||
|
syn keyword htmlArg contained closure color columnalign columnalignment columnlines columnspacing columnspan columnwidth crossout decimalpoint
|
||||||
|
syn keyword htmlArg contained definitionURL denomalign depth display displaystyle edge encoding equalcolumns equalrows fence
|
||||||
|
syn keyword htmlArg contained fontfamily fontsize fontstyle fontweight form frame framespacing groupalign height indentalign
|
||||||
|
syn keyword htmlArg contained indentalignfirst indentalignlast indentshift indentshiftfirst indentshiftlast indenttarget index infixlinebreakstyle integer largeop
|
||||||
|
syn keyword htmlArg contained leftoverhang length linebreak linebreakmultchar linebreakstyle lineleading linethickness location longdivstyle lquote
|
||||||
|
syn keyword htmlArg contained lspace ltr macros math mathbackground mathcolor mathsize mathvariant maxsize maxwidth
|
||||||
|
syn keyword htmlArg contained mediummathspace menclose minlabelspacing minsize mode movablelimits msgroup mslinethickness name nargs
|
||||||
|
syn keyword htmlArg contained newline notation numalign number occurrence open order other overflow position
|
||||||
|
syn keyword htmlArg contained rightoverhang role rowalign rowlines rowspacing rowspan rquote rspace schemaLocation scope
|
||||||
|
syn keyword htmlArg contained scriptlevel scriptminsize scriptsize scriptsizemultiplier selection separator separators shift side stackalign
|
||||||
|
syn keyword htmlArg contained stretchy subscriptshift superscriptshift symmetric thickmathspace thinmathspace type valign verythickmathspace verythinmathspace
|
||||||
|
syn keyword htmlArg contained veryverythickmathspace veryverythinmathspace voffset width xref
|
||||||
|
|
||||||
|
|
||||||
|
endif
|
||||||
293
syntax/html.vim
293
syntax/html.vim
@@ -1,290 +1,3 @@
|
|||||||
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'html5') == -1
|
" Polyglot metafile
|
||||||
|
source <sfile>:h/html-1.vim
|
||||||
" Vim syntax file
|
source <sfile>:h/html-2.vim
|
||||||
" Language: HTML (version 5.1)
|
|
||||||
" SVG (SVG 1.1 Second Edition)
|
|
||||||
" MathML (MathML 3.0 Second Edition)
|
|
||||||
" Last Change: 2017 Mar 07
|
|
||||||
" License: Public domain
|
|
||||||
" (but let me know if you like :) )
|
|
||||||
"
|
|
||||||
" Note: This file just add new tags from HTML 5
|
|
||||||
" and don't replace default html.vim syntax file
|
|
||||||
"
|
|
||||||
" Maintainer: Kao, Wei-Ko(othree) ( othree AT gmail DOT com )
|
|
||||||
" Changes: update to Draft 2016 Jan 13
|
|
||||||
" add microdata Attributes
|
|
||||||
" Maintainer: Rodrigo Machado <rcmachado@gmail.com>
|
|
||||||
" URL: http://rm.blog.br/vim/syntax/html.vim
|
|
||||||
" Modified: htdebeer <H.T.de.Beer@gmail.com>
|
|
||||||
" Changes: add common SVG elements and attributes for inline SVG
|
|
||||||
|
|
||||||
" Patch 7.4.1142
|
|
||||||
if has("patch-7.4-1142")
|
|
||||||
if has("win32")
|
|
||||||
syn iskeyword @,48-57,_,128-167,224-235,-
|
|
||||||
else
|
|
||||||
syn iskeyword @,48-57,_,192-255,-
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
" HTML 5 tags
|
|
||||||
syn keyword htmlTagName contained article aside audio canvas command
|
|
||||||
syn keyword htmlTagName contained datalist details dialog embed figcaption figure footer
|
|
||||||
syn keyword htmlTagName contained header hgroup keygen main mark meter menu menuitem nav output
|
|
||||||
syn keyword htmlTagName contained progress ruby rt rp rb rtc section source summary time track video data
|
|
||||||
syn keyword htmlTagName contained template content shadow slot
|
|
||||||
syn keyword htmlTagName contained wbr bdi
|
|
||||||
syn keyword htmlTagName contained picture
|
|
||||||
|
|
||||||
" SVG tags
|
|
||||||
" http://www.w3.org/TR/SVG/
|
|
||||||
" as found in http://www.w3.org/TR/SVG/eltindex.html
|
|
||||||
syn keyword htmlTagName contained svg
|
|
||||||
syn keyword htmlTagName contained altGlyph altGlyphDef altGlyphItem
|
|
||||||
syn keyword htmlTagName contained animate animateColor animateMotion animateTransform
|
|
||||||
syn keyword htmlTagName contained circle ellipse rect line polyline polygon image path
|
|
||||||
syn keyword htmlTagName contained clipPath color-profile cursor
|
|
||||||
syn keyword htmlTagName contained defs desc g symbol view use switch foreignObject
|
|
||||||
syn keyword htmlTagName contained filter feBlend feColorMatrix feComponentTransfer feComposite feConvolveMatrix feDiffuseLighting feDisplacementMap feDistantLight feFlood feFuncA feFuncB feFuncG feFuncR feGaussianBlur feImage feMerge feMergeNode feMorphology feOffset fePointLight feSpecularLighting feSpotLight feTile feTurbulence
|
|
||||||
syn keyword htmlTagName contained font font-face font-face-format font-face-name font-face-src font-face-uri
|
|
||||||
syn keyword htmlTagName contained glyph glyphRef hkern
|
|
||||||
syn keyword htmlTagName contained linearGradient marker mask pattern radialGradient set stop
|
|
||||||
syn keyword htmlTagName contained missing-glyph mpath
|
|
||||||
syn keyword htmlTagName contained text textPath tref tspan vkern
|
|
||||||
syn keyword htmlTagName contained metadata title
|
|
||||||
|
|
||||||
" MathML tags
|
|
||||||
" https://www.w3.org/TR/MathML3/appendixi.html#index.elem
|
|
||||||
syn keyword htmlTagName contained abs and annotation annotation-xml apply approx arccos arccosh arccot arccoth
|
|
||||||
syn keyword htmlTagName contained arccsc arccsch arcsec arcsech arcsin arcsinh arctan arctanh arg bind
|
|
||||||
syn keyword htmlTagName contained bvar card cartesianproduct cbytes ceiling cerror ci cn codomain complexes
|
|
||||||
syn keyword htmlTagName contained compose condition conjugate cos cosh cot coth cs csc csch
|
|
||||||
syn keyword htmlTagName contained csymbol curl declare degree determinant diff divergence divide domain domainofapplication
|
|
||||||
syn keyword htmlTagName contained emptyset eq equivalent eulergamma exists exp exponentiale factorial factorof false
|
|
||||||
syn keyword htmlTagName contained floor fn forall gcd geq grad gt ident image imaginary
|
|
||||||
syn keyword htmlTagName contained imaginaryi implies in infinity int integers intersect interval inverse lambda
|
|
||||||
syn keyword htmlTagName contained laplacian lcm leq limit list ln log logbase lowlimit lt
|
|
||||||
syn keyword htmlTagName contained maction maligngroup malignmark math matrix matrixrow max mean median menclose
|
|
||||||
syn keyword htmlTagName contained merror mfenced mfrac mglyph mi mi" min minus mlabeledtr mlongdiv
|
|
||||||
syn keyword htmlTagName contained mmultiscripts mn mo mode moment momentabout mover mpadded mphantom mprescripts
|
|
||||||
syn keyword htmlTagName contained mroot mrow ms mscarries mscarry msgroup msline mspace msqrt msrow
|
|
||||||
syn keyword htmlTagName contained mstack mstyle msub msubsup msup mtable mtd mtext mtr munder
|
|
||||||
syn keyword htmlTagName contained munderover naturalnumbers neq none not notanumber notin notprsubset notsubset or
|
|
||||||
syn keyword htmlTagName contained otherwise outerproduct partialdiff pi piece piecewise plus power primes product
|
|
||||||
syn keyword htmlTagName contained prsubset quotient rationals real reals reln rem root scalarproduct sdev
|
|
||||||
syn keyword htmlTagName contained sec sech selector semantics sep set setdiff share sin sinh
|
|
||||||
syn keyword htmlTagName contained span subset sum tan tanh tendsto times transpose true union
|
|
||||||
syn keyword htmlTagName contained uplimit variance vector vectorproduct xor
|
|
||||||
|
|
||||||
" Custom Element
|
|
||||||
syn match htmlTagName contained "\<[a-z][-.0-9_a-z]*-[-.0-9_a-z]*\>"
|
|
||||||
syn match htmlTagName contained "[.0-9_a-z]\@<=-[-.0-9_a-z]*\>"
|
|
||||||
|
|
||||||
" HTML 5 arguments
|
|
||||||
" Core Attributes
|
|
||||||
syn keyword htmlArg contained accesskey class contenteditable contextmenu dir
|
|
||||||
syn keyword htmlArg contained draggable hidden id is lang spellcheck style tabindex title translate
|
|
||||||
" Event-handler Attributes
|
|
||||||
syn keyword htmlArg contained onabort onblur oncanplay oncanplaythrough onchange
|
|
||||||
syn keyword htmlArg contained onclick oncontextmenu ondblclick ondrag ondragend ondragenter ondragleave ondragover
|
|
||||||
syn keyword htmlArg contained ondragstart ondrop ondurationchange onemptied onended onerror onfocus onformchange
|
|
||||||
syn keyword htmlArg contained onforminput oninput oninvalid onkeydown onkeypress onkeyup onload onloadeddata
|
|
||||||
syn keyword htmlArg contained onloadedmetadata onloadstart onmousedown onmousemove onmouseout onmouseover onmouseup
|
|
||||||
syn keyword htmlArg contained onmousewheel onpause onplay onplaying onprogress onratechange onreadystatechange
|
|
||||||
syn keyword htmlArg contained onscroll onseeked onseeking onselect onshow onstalled onsubmit onsuspend ontimeupdate
|
|
||||||
syn keyword htmlArg contained onvolumechange onwaiting
|
|
||||||
" XML Attributes
|
|
||||||
syn keyword htmlArg contained xml:lang xml:space xml:base xmlns
|
|
||||||
" new features
|
|
||||||
" <body>
|
|
||||||
syn keyword htmlArg contained onafterprint onbeforeprint onbeforeunload onblur onerror onfocus onhashchange onload
|
|
||||||
syn keyword htmlArg contained onmessage onoffline ononline onpopstate onredo onresize onstorage onundo onunload
|
|
||||||
" <video>, <audio>, <source>, <track>
|
|
||||||
syn keyword htmlArg contained autoplay preload controls loop poster media kind charset srclang track playsinline
|
|
||||||
" <form>, <input>, <button>
|
|
||||||
syn keyword htmlArg contained form autocomplete autofocus list min max step
|
|
||||||
syn keyword htmlArg contained formaction autofocus formenctype formmethod formtarget formnovalidate
|
|
||||||
syn keyword htmlArg contained required placeholder pattern
|
|
||||||
" <command>, <details>, <time>
|
|
||||||
syn keyword htmlArg contained label icon open datetime-local pubdate
|
|
||||||
" <script>
|
|
||||||
syn keyword htmlArg contained async
|
|
||||||
" <content>
|
|
||||||
syn keyword htmlArg contained select
|
|
||||||
" <iframe>
|
|
||||||
syn keyword htmlArg contained seamless srcdoc sandbox allowfullscreen allowusermedia allowpaymentrequest allowpresentation
|
|
||||||
" <picture>
|
|
||||||
syn keyword htmlArg contained srcset sizes
|
|
||||||
" <a>
|
|
||||||
syn keyword htmlArg contained download media
|
|
||||||
" <script>, <style>
|
|
||||||
syn keyword htmlArg contained nonce
|
|
||||||
" <area>, <a>, <img>, <iframe>, <link>
|
|
||||||
syn keyword htmlArg contained referrerpolicy
|
|
||||||
" https://w3c.github.io/webappsec-subresource-integrity/#the-integrity-attribute
|
|
||||||
syn keyword htmlArg contained integrity crossorigin
|
|
||||||
" <link>
|
|
||||||
syn keyword htmlArg contained prefetch
|
|
||||||
" syn keyword htmlArg contained preload
|
|
||||||
" <img>
|
|
||||||
syn keyword htmlArg contained decoding
|
|
||||||
" https://w3c.github.io/selection-api/#extensions-to-globaleventhandlers
|
|
||||||
syn keyword htmlArg contained onselectstart onselectionchange
|
|
||||||
" https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement/loading
|
|
||||||
syn keyword htmlArg contained loading
|
|
||||||
|
|
||||||
" Custom Data Attributes
|
|
||||||
" http://w3c.github.io/html/single-page.html#embedding-custom-non-visible-data-with-the-data-attributes
|
|
||||||
syn match htmlArg "\<data[-.0-9_a-z]*-[-.0-9_a-z]*\>" contained
|
|
||||||
|
|
||||||
" Vendor Extension Attributes
|
|
||||||
" http://w3c.github.io/html/single-page.html#conformance-requirements-extensibility
|
|
||||||
syn match htmlArg "\<x[-.0-9_a-z]*-[-.0-9_a-z]*\>" contained
|
|
||||||
|
|
||||||
" Microdata
|
|
||||||
" http://dev.w3.org/html5/md/
|
|
||||||
syn keyword htmlArg contained itemid itemscope itemtype itemprop itemref
|
|
||||||
|
|
||||||
" SVG
|
|
||||||
" http://www.w3.org/TR/SVG/
|
|
||||||
" Some common attributes from http://www.w3.org/TR/SVG/attindex.html
|
|
||||||
syn keyword htmlArg contained accent-height accumulate additive alphabetic amplitude arabic-form ascent attributeName attributeType azimuth
|
|
||||||
syn keyword htmlArg contained baseFrequency baseProfile bbox begin bias by
|
|
||||||
syn keyword htmlArg contained calcMode cap-height class clipPathUnits contentScriptType contentStyleType cx cy
|
|
||||||
syn keyword htmlArg contained d descent diffuseConstant divisor dur dx dy
|
|
||||||
syn keyword htmlArg contained edgeMode elevation end exponent externalResourcesRequired
|
|
||||||
syn keyword htmlArg contained fill filterRes filterUnits font-family font-size font-stretch font-style font-variant font-weight format format from fx fy
|
|
||||||
syn keyword htmlArg contained g1 g2 glyph-name glyphRef gradientTransform gradientUnits
|
|
||||||
syn keyword htmlArg contained hanging height horiz-adv-x horiz-origin-x horiz-origin-y
|
|
||||||
syn keyword htmlArg contained id ideographic in in2 intercept
|
|
||||||
syn keyword htmlArg contained k k1 k2 k3 k4 kernelMatrix kernelUnitLength keyPoints keySplines keyTimes
|
|
||||||
syn keyword htmlArg contained lang lengthAdjust limitingConeAngle local
|
|
||||||
syn keyword htmlArg contained markerHeight markerUnits markerWidth maskContentUnits maskUnits mathematical max media method min mode name
|
|
||||||
syn keyword htmlArg contained numOctaves
|
|
||||||
syn keyword htmlArg contained offset onabort onactivate onbegin onclick onend onerror onfocusin onfocusout onload onmousedown onmousemove onmouseout onmouseover onmouseup onrepeat onresize onscroll onunload onzoom operator order orient orientation origin overline-position overline-thickness
|
|
||||||
syn keyword htmlArg contained panose-1 path pathLength patternContentUnits patternTransform patternUnits points pointsAtX pointsAtY pointsAtZ preserveAlpha preserveAspectRatio primitiveUnits
|
|
||||||
syn keyword htmlArg contained r radius refX refY rendering-intent repeatCount repeatDur requiredExtensions requiredFeatures restart result rotate rx ry
|
|
||||||
syn keyword htmlArg contained scale seed slope spacing specularConstant specularExponent spreadMethod startOffset stdDeviation stemh stemv stitchTiles strikethrough-position strikethrough-thickness string surfaceScale systemLanguage
|
|
||||||
syn keyword htmlArg contained tableValues target targetX targetY textLength title to transform type
|
|
||||||
syn keyword htmlArg contained u1 u2 underline-position underline-thickness unicode unicode-range units-per-em
|
|
||||||
syn keyword htmlArg contained v-alphabetic v-hanging v-ideographic v-mathematical values version vert-adv-y vert-origin-x vert-origin-y viewBox viewTarget
|
|
||||||
syn keyword htmlArg contained width widths
|
|
||||||
syn keyword htmlArg contained x x-height x1 x2 xChannelSelector xlink:actuate xlink:actuate xlink:arcrole xlink:href xlink:role xlink:show xlink:title xlink:type xml:base xml:lang xml:space
|
|
||||||
syn keyword htmlArg contained y y1 y2 yChannelSelector
|
|
||||||
syn keyword htmlArg contained z zoomAndPan
|
|
||||||
syn keyword htmlArg contained alignment-baseline baseline-shift clip-path clip-rule clip color-interpolation-filters color-interpolation color-profile color-rendering color cursor direction display dominant-baseline enable-background fill-opacity fill-rule fill filter flood-color flood-opacity font-family font-size-adjust font-size font-stretch font-style font-variant font-weight glyph-orientation-horizontal glyph-orientation-vertical image-rendering kerning letter-spacing lighting-color marker-end marker-mid marker-start mask opacity overflow pointer-events shape-rendering stop-color stop-opacity stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width stroke text-anchor text-decoration text-rendering unicode-bidi visibility word-spacing writing-mode
|
|
||||||
|
|
||||||
" MathML attributes
|
|
||||||
" https://www.w3.org/TR/MathML3/chapter2.html#interf.toplevel.atts
|
|
||||||
syn keyword htmlArg contained accent accentunder actiontype align alignmentscope altimg altimg-height altimg-valign altimg-width alttext
|
|
||||||
syn keyword htmlArg contained annotation-xml background base baseline bevelled cd cdgroup charalign charspacing close
|
|
||||||
syn keyword htmlArg contained closure color columnalign columnalignment columnlines columnspacing columnspan columnwidth crossout decimalpoint
|
|
||||||
syn keyword htmlArg contained definitionURL denomalign depth display displaystyle edge encoding equalcolumns equalrows fence
|
|
||||||
syn keyword htmlArg contained fontfamily fontsize fontstyle fontweight form frame framespacing groupalign height indentalign
|
|
||||||
syn keyword htmlArg contained indentalignfirst indentalignlast indentshift indentshiftfirst indentshiftlast indenttarget index infixlinebreakstyle integer largeop
|
|
||||||
syn keyword htmlArg contained leftoverhang length linebreak linebreakmultchar linebreakstyle lineleading linethickness location longdivstyle lquote
|
|
||||||
syn keyword htmlArg contained lspace ltr macros math mathbackground mathcolor mathsize mathvariant maxsize maxwidth
|
|
||||||
syn keyword htmlArg contained mediummathspace menclose minlabelspacing minsize mode movablelimits msgroup mslinethickness name nargs
|
|
||||||
syn keyword htmlArg contained newline notation numalign number occurrence open order other overflow position
|
|
||||||
syn keyword htmlArg contained rightoverhang role rowalign rowlines rowspacing rowspan rquote rspace schemaLocation scope
|
|
||||||
syn keyword htmlArg contained scriptlevel scriptminsize scriptsize scriptsizemultiplier selection separator separators shift side stackalign
|
|
||||||
syn keyword htmlArg contained stretchy subscriptshift superscriptshift symmetric thickmathspace thinmathspace type valign verythickmathspace verythinmathspace
|
|
||||||
syn keyword htmlArg contained veryverythickmathspace veryverythinmathspace voffset width xref
|
|
||||||
|
|
||||||
|
|
||||||
endif
|
|
||||||
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'jinja') == -1
|
|
||||||
|
|
||||||
" Vim syntax file
|
|
||||||
" Language: HTML (version 5)
|
|
||||||
" Maintainer: Rodrigo Machado <rcmachado@gmail.com>
|
|
||||||
" URL: http://rm.blog.br/vim/syntax/html.vim
|
|
||||||
" Last Change: 2009 Aug 19
|
|
||||||
" License: Public domain
|
|
||||||
" (but let me know if you like :) )
|
|
||||||
"
|
|
||||||
" Note: This file just adds the new tags from HTML 5
|
|
||||||
" and don't replace default html.vim syntax file
|
|
||||||
"
|
|
||||||
" Modified: othree <othree@gmail.com>
|
|
||||||
" Changes: update to Draft 28 August 2010
|
|
||||||
" add complete new attributes
|
|
||||||
" add wai-aria attributes
|
|
||||||
" add microdata attributes
|
|
||||||
" add rdfa attributes
|
|
||||||
|
|
||||||
|
|
||||||
syn keyword htmlTagName contained script
|
|
||||||
" HTML 5 tags
|
|
||||||
syn keyword htmlTagName contained article aside audio canvas command
|
|
||||||
syn keyword htmlTagName contained datalist details dialog embed figcaption figure footer
|
|
||||||
syn keyword htmlTagName contained header hgroup keygen mark meter menu nav output
|
|
||||||
syn keyword htmlTagName contained progress time ruby rt rp section source summary time track video wbr
|
|
||||||
|
|
||||||
" HTML 5 arguments
|
|
||||||
" Core Attributes
|
|
||||||
syn keyword htmlArg contained accesskey class contenteditable contextmenu dir
|
|
||||||
syn keyword htmlArg contained draggable hidden id lang spellcheck style tabindex title
|
|
||||||
" Event-handler Attributes
|
|
||||||
syn keyword htmlArg contained onabort onblur oncanplay oncanplaythrough onchange
|
|
||||||
syn keyword htmlArg contained onclick oncontextmenu ondblclick ondrag ondragend ondragenter ondragleave ondragover
|
|
||||||
syn keyword htmlArg contained ondragstart ondrop ondurationchange onemptied onended onerror onfocus onformchange
|
|
||||||
syn keyword htmlArg contained onforminput oninput oninvalid onkeydown onkeypress onkeyup onload onloadeddata
|
|
||||||
syn keyword htmlArg contained onloadedmetadata onloadstart onmousedown onmousemove onmouseout onmouseover onmouseup
|
|
||||||
syn keyword htmlArg contained onmousewheel onpause onplay onplaying onprogress onratechange onreadystatechange
|
|
||||||
syn keyword htmlArg contained onscroll onseeked onseeking onselect onshow onstalled onsubmit onsuspend ontimeupdate
|
|
||||||
syn keyword htmlArg contained onvolumechange onwaiting
|
|
||||||
" XML Attributes
|
|
||||||
syn keyword htmlArg contained xml:lang xml:space xml:base
|
|
||||||
" new features
|
|
||||||
" <body>
|
|
||||||
syn keyword htmlArg contained onafterprint onbeforeprint onbeforeunload onblur onerror onfocus onhashchange onload
|
|
||||||
syn keyword htmlArg contained onmessage onoffline ononline onpopstate onredo onresize onstorage onundo onunload
|
|
||||||
" <video>, <audio>, <source>, <track>
|
|
||||||
syn keyword htmlArg contained autoplay preload controls loop poster media kind charset srclang track
|
|
||||||
" <form>, <input>, <button>
|
|
||||||
syn keyword htmlArg contained form autocomplete autofocus list min max step
|
|
||||||
syn keyword htmlArg contained formaction autofocus formenctype formmethod formtarget formnovalidate
|
|
||||||
" <command>, <details>, <time>
|
|
||||||
syn keyword htmlArg contained label icon open datetime pubdate
|
|
||||||
|
|
||||||
" Custom Data Attributes
|
|
||||||
" http://dev.w3.org/html5/spec/Overview.html#custom-data-attribute
|
|
||||||
syn match htmlArg "\<\(data(\-[a-z]\+)\+\)=" contained
|
|
||||||
|
|
||||||
" Microdata
|
|
||||||
" http://dev.w3.org/html5/md/
|
|
||||||
syn keyword htmlArg contained item itemid itemscope itemtype itemprop
|
|
||||||
|
|
||||||
" RDFa
|
|
||||||
" http://www.w3.org/TR/rdfa-syntax/#a_xhtmlrdfa_dtd
|
|
||||||
syn keyword htmlArg contained about typeof property resource content datatype rel rev
|
|
||||||
|
|
||||||
" WAI-ARIA States and Properties
|
|
||||||
" http://www.w3.org/TR/wai-aria/states_and_properties
|
|
||||||
syn keyword htmlArg contained role
|
|
||||||
" Global States and Properties
|
|
||||||
syn match htmlArg contained "\<aria-\(atomic\|busy\|controls\|describedby\)\>"
|
|
||||||
syn match htmlArg contained "\<aria-\(disabled\|dropeffect\|flowto\|grabbed\)\>"
|
|
||||||
syn match htmlArg contained "\<aria-\(haspopup\|hidden\|invalid\|label\)\>"
|
|
||||||
syn match htmlArg contained "\<aria-\(labelledby\|live\|owns\|relevant\)\>"
|
|
||||||
|
|
||||||
" Widget Attributes
|
|
||||||
syn match htmlArg contained "\<aria-\(autocomplete\|checked\|disabled\|expanded\)\>"
|
|
||||||
syn match htmlArg contained "\<aria-\(haspopup\|hidden\|invalid\|label\)\>"
|
|
||||||
syn match htmlArg contained "\<aria-\(level\|multiline\|multiselectable\|orientation\)\>"
|
|
||||||
syn match htmlArg contained "\<aria-\(pressed\|readonly\|required\|selected\)\>"
|
|
||||||
syn match htmlArg contained "\<aria-\(sort\|valuemax\|valuemin\|valuenow\|valuetext\|\)\>"
|
|
||||||
|
|
||||||
" Live Region Attributes
|
|
||||||
syn match htmlArg contained "\<aria-\(atomic\|busy\|live\|relevant\|\)\>"
|
|
||||||
|
|
||||||
" Drag-and-Drop attributes
|
|
||||||
syn match htmlArg contained "\<aria-\(dropeffect\|grabbed\)\>"
|
|
||||||
|
|
||||||
" Relationship Attributes
|
|
||||||
syn match htmlArg contained "\<aria-\(activedescendant\|controls\|describedby\|flowto\|\)\>"
|
|
||||||
syn match htmlArg contained "\<aria-\(labelledby\|owns\|posinset\|setsize\|\)\>"
|
|
||||||
|
|
||||||
endif
|
|
||||||
|
|||||||
Reference in New Issue
Block a user