Mercurial > ec-dotfiles
diff vendor/vim-syntax/coffee.vim @ 595:0e72765944d4
Update vendors
author | nanaya <me@myconan.net> |
---|---|
date | Wed, 22 Mar 2017 00:27:53 +0900 |
parents | 6f57f959cc0b |
children | b305f2ce5f88 |
line wrap: on
line diff
--- a/vendor/vim-syntax/coffee.vim Wed Nov 02 04:03:09 2016 +0900 +++ b/vendor/vim-syntax/coffee.vim Wed Mar 22 00:27:53 2017 +0900 @@ -32,7 +32,7 @@ syn match coffeeException /\<\%(try\|catch\|finally\)\>/ display hi def link coffeeException Exception -syn match coffeeKeyword /\<\%(new\|in\|of\|by\|and\|or\|not\|is\|isnt\|class\|extends\|super\|do\|yield\)\>/ +syn match coffeeKeyword /\<\%(new\|in\|of\|by\|and\|or\|not\|is\|isnt\|class\|extends\|super\|do\|yield\|debugger\|import\|export\|await\)\>/ \ display " The `own` keyword is only a keyword after `for`. syn match coffeeKeyword /\<for\s\+own\>/ contained containedin=coffeeRepeat @@ -107,7 +107,7 @@ " An error for reserved keywords, taken from the RESERVED array: " http://coffeescript.org/documentation/docs/lexer.html#section-67 -syn match coffeeReservedError /\<\%(case\|default\|function\|var\|void\|with\|const\|let\|enum\|export\|import\|native\|__hasProp\|__extends\|__slice\|__bind\|__indexOf\|implements\|interface\|package\|private\|protected\|public\|static\)\>/ +syn match coffeeReservedError /\<\%(case\|default\|function\|var\|void\|with\|const\|let\|enum\|native\|implements\|interface\|package\|private\|protected\|public\|static\)\>/ \ display hi def link coffeeReservedError Error