summaryrefslogtreecommitdiffstats
path: root/syntax/jasmine.vim
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2016-12-20 20:57:20 +0100
committerAdam Stankiewicz <sheerun@sher.pl>2016-12-20 20:57:20 +0100
commite404a658b1647fad396a954776eda0bdabf8353c (patch)
treefcdab0e324fd72015ba656e43bd8f8c243030c14 /syntax/jasmine.vim
parent74652b465d7eff97070001317a4ea5557717378d (diff)
downloadvim-polyglot-e404a658b1647fad396a954776eda0bdabf8353c.tar.gz
vim-polyglot-e404a658b1647fad396a954776eda0bdabf8353c.zip
Update
Diffstat (limited to 'syntax/jasmine.vim')
-rw-r--r--syntax/jasmine.vim7
1 files changed, 6 insertions, 1 deletions
diff --git a/syntax/jasmine.vim b/syntax/jasmine.vim
index c1d194e9..eaa83d76 100644
--- a/syntax/jasmine.vim
+++ b/syntax/jasmine.vim
@@ -11,7 +11,7 @@ endif
syntax case match
" keywords
-syntax keyword jasmineSuite describe it beforeEach afterEach
+syntax keyword jasmineSuite describe it beforeEach afterEach beforeAll afterAll
syntax keyword jasmine jasmine
" special
@@ -35,6 +35,9 @@ syntax match jasmineClock /\.mockDate/
" disabled
syntax keyword jasmineDisabled xdescribe xit
+" focused
+syntax keyword jasmineFocused fdescribe fit
+
" expectation
syntax keyword jasmineExpectation expect
@@ -59,6 +62,7 @@ syntax cluster JavaScriptAll add=
\ jasmine,
\ jasmineClock,
\ jasmineDisabled,
+ \ jasmineFocused,
\ jasmineExpectation,
\ jasmineMatcher,
\ jasmineNot,
@@ -72,6 +76,7 @@ let b:current_syntax = "jasmine"
hi def link jasmine Special
hi def link jasmineClock Special
hi def link jasmineDisabled Error
+hi def link jasmineFocused Special
hi def link jasmineExpectation Statement
hi def link jasmineMatcher Statement
hi def link jasmineNot Special