Skip to content

Commit 29cd92c

Browse files
author
othree_kao
committed
Fix jquery string group name
1 parent f18a806 commit 29cd92c

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

autoload/syntax/jquery.coffee.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ syntax keyword coffeeQTraversing contained children closest find next nextAl
5555

5656

5757
" selector
58-
syntax region coffeeStringD start=+"+ skip=+\\\\\|\\"+ end=+"\|$+ contains=coffeeSpecial,@htmlPreproc,@jSelectors
59-
syntax region coffeeStringS start=+'+ skip=+\\\\\|\\'+ end=+'\|$+ contains=coffeeSpecial,@htmlPreproc,@jSelectors
58+
syntax region coffeeString start=+"+ skip=+\\\\\|\\"+ end=+"\|$+ contains=coffeeSpecial,@htmlPreproc,@jSelectors
59+
syntax region coffeeString start=+'+ skip=+\\\\\|\\'+ end=+'\|$+ contains=coffeeSpecial,@htmlPreproc,@jSelectors
6060

6161
syntax cluster jSelectors contains=jId,jClass,jOperators,jBasicFilters,jContentFilters,jVisibility,jChildFilters,jForms,jFormFilters
6262
syntax match jId contained /#[0-9A-Za-z_\-]\+/

autoload/syntax/jquery.javascript.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ syntax keyword javascriptQTraversing contained children closest find next ne
5555

5656

5757
" selector
58-
syntax region javascriptStringD start=+"+ skip=+\\\\\|\\"+ end=+"\|$+ contains=javascriptSpecial,@htmlPreproc,@jSelectors
59-
syntax region javascriptStringS start=+'+ skip=+\\\\\|\\'+ end=+'\|$+ contains=javascriptSpecial,@htmlPreproc,@jSelectors
58+
syntax region javascriptString start=+"+ skip=+\\\\\|\\"+ end=+"\|$+ contains=javascriptSpecial,@htmlPreproc,@jSelectors
59+
syntax region javascriptString start=+'+ skip=+\\\\\|\\'+ end=+'\|$+ contains=javascriptSpecial,@htmlPreproc,@jSelectors
6060

6161
syntax cluster jSelectors contains=jId,jClass,jOperators,jBasicFilters,jContentFilters,jVisibility,jChildFilters,jForms,jFormFilters
6262
syntax match jId contained /#[0-9A-Za-z_\-]\+/

autoload/syntax/jquery.ls.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ syntax keyword lsQTraversing contained children closest find next nextAll ne
5555

5656

5757
" selector
58-
syntax region lsStringD start=+"+ skip=+\\\\\|\\"+ end=+"\|$+ contains=lsSpecial,@htmlPreproc,@jSelectors
59-
syntax region lsStringS start=+'+ skip=+\\\\\|\\'+ end=+'\|$+ contains=lsSpecial,@htmlPreproc,@jSelectors
58+
syntax region lsString start=+"+ skip=+\\\\\|\\"+ end=+"\|$+ contains=lsSpecial,@htmlPreproc,@jSelectors
59+
syntax region lsString start=+'+ skip=+\\\\\|\\'+ end=+'\|$+ contains=lsSpecial,@htmlPreproc,@jSelectors
6060

6161
syntax cluster jSelectors contains=jId,jClass,jOperators,jBasicFilters,jContentFilters,jVisibility,jChildFilters,jForms,jFormFilters
6262
syntax match jId contained /#[0-9A-Za-z_\-]\+/

autoload/syntax/jquery.typescript.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ syntax keyword typescriptQTraversing contained children closest find next ne
5555

5656

5757
" selector
58-
syntax region typescriptStringD start=+"+ skip=+\\\\\|\\"+ end=+"\|$+ contains=typescriptSpecial,@htmlPreproc,@jSelectors
59-
syntax region typescriptStringS start=+'+ skip=+\\\\\|\\'+ end=+'\|$+ contains=typescriptSpecial,@htmlPreproc,@jSelectors
58+
syntax region typescriptString start=+"+ skip=+\\\\\|\\"+ end=+"\|$+ contains=typescriptSpecial,@htmlPreproc,@jSelectors
59+
syntax region typescriptString start=+'+ skip=+\\\\\|\\'+ end=+'\|$+ contains=typescriptSpecial,@htmlPreproc,@jSelectors
6060

6161
syntax cluster jSelectors contains=jId,jClass,jOperators,jBasicFilters,jContentFilters,jVisibility,jChildFilters,jForms,jFormFilters
6262
syntax match jId contained /#[0-9A-Za-z_\-]\+/

0 commit comments

Comments
 (0)