Support async before keyword with arrow function

This commit is contained in:
leafOfTree
2020-10-10 10:35:30 +08:00
parent b8e23259e2
commit 559d93c6ba

View File

@@ -18,31 +18,34 @@ let s:has_init_indent = vue#GetConfig("has_init_indent",
let s:vue_keywords = 'name parent functional delimiters comments components directives filters extends mixins inheritAttrs model props propsData data computed watch methods template render renderError inject provide beforeCreate created beforeMount mounted beforeUpdate updated activated deactivated beforeDestroy destroyed' let s:vue_keywords = 'name parent functional delimiters comments components directives filters extends mixins inheritAttrs model props propsData data computed watch methods template render renderError inject provide beforeCreate created beforeMount mounted beforeUpdate updated activated deactivated beforeDestroy destroyed'
let s:indent = &sw * (1 + s:has_init_indent) let s:indent = &sw * (1 + s:has_init_indent)
let s:vue_keywords_regexp = '\v^\s{'.s:indent.'}(async )?<(' let s:keywords_regexp = '\v^\s{'.s:indent.'}(async )?<('
\.join(split(s:vue_keywords, ' '), '|') \.join(split(s:vue_keywords, ' '), '|')
\.')\ze' \.')\ze'
let contains = hlexists('jsAsyncKeyword') let contains = hlexists('jsAsyncKeyword')
\? 'jsAsyncKeyword' \? 'jsAsyncKeyword'
\: 'javaScriptReserved' \: 'javaScriptReserved'
let s:vue_match_func_option = ' containedin=jsObject,javascriptVueScript' let s:match_option =
\' containedin=jsObject,javascriptVueScript'
\.' contains='.contains \.' contains='.contains
\.' skipwhite skipempty nextgroup=jsFuncArgs' \.' skipwhite skipempty'
execute 'syntax match vueObjectKey /' execute 'syntax match vueObjectKey /'
\.s:vue_keywords_regexp \.s:keywords_regexp
\.'\s*:/' \.'\s*:/'
\.' containedin=jsObject,javascriptVueScript' \.s:match_option
\.' skipwhite skipempty nextgroup=jsObjectValue' \.' nextgroup=jsObjectValue'
execute 'syntax match vueObjectFuncName /' execute 'syntax match vueObjectFuncName /'
\.s:vue_keywords_regexp \.s:keywords_regexp
\.'\_s*\(/' \.'\_s*\(/'
\.s:vue_match_func_option \.s:match_option
\.' nextgroup=jsFuncArgs'
execute 'syntax match vueObjectFuncKey /' execute 'syntax match vueObjectFuncKey /'
\.s:vue_keywords_regexp \.s:keywords_regexp
\.'\s*:\s*function>/' \.'\s*:\s*function>/'
\.s:vue_match_func_option \.s:match_option
\.' nextgroup=jsFuncArgs'
highlight default link vueObjectKey vueObjectKeyword highlight default link vueObjectKey vueObjectKeyword
highlight default link vueObjectFuncName vueObjectKeyword highlight default link vueObjectFuncName vueObjectKeyword