Skip to content

Commit eca596c

Browse files
author
othree_kao
committed
Correct init marker name
1 parent 3cdc858 commit eca596c

24 files changed

+48
-48
lines changed

autoload/syntax/angularjs.coffee.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ syntax keyword coffeeAMAttrs contained name requires
6666
" Define the default highlighting.
6767
" For version 5.7 and earlier: only when not done already
6868
" For version 5.8 and later: only when an item doesn't have highlighting yet
69-
if version >= 508 || !exists("did_lisp_syntax_inits")
69+
if version >= 508 || !exists("did_angularjs_coffee_syntax_inits")
7070
if version < 508
71-
let did_lisp_syntax_inits = 1
71+
let did_angularjs_coffee_syntax_inits = 1
7272
command -nargs=+ HiLink hi link <args>
7373
else
7474
command -nargs=+ HiLink hi def link <args>

autoload/syntax/angularjs.javascript.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ syntax keyword javascriptAMAttrs contained name requires
6666
" Define the default highlighting.
6767
" For version 5.7 and earlier: only when not done already
6868
" For version 5.8 and later: only when an item doesn't have highlighting yet
69-
if version >= 508 || !exists("did_lisp_syntax_inits")
69+
if version >= 508 || !exists("did_angularjs_javascript_syntax_inits")
7070
if version < 508
71-
let did_lisp_syntax_inits = 1
71+
let did_angularjs_javascript_syntax_inits = 1
7272
command -nargs=+ HiLink hi link <args>
7373
else
7474
command -nargs=+ HiLink hi def link <args>

autoload/syntax/angularjs.ls.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ syntax keyword lsAMAttrs contained name requires
6666
" Define the default highlighting.
6767
" For version 5.7 and earlier: only when not done already
6868
" For version 5.8 and later: only when an item doesn't have highlighting yet
69-
if version >= 508 || !exists("did_lisp_syntax_inits")
69+
if version >= 508 || !exists("did_angularjs_ls_syntax_inits")
7070
if version < 508
71-
let did_lisp_syntax_inits = 1
71+
let did_angularjs_ls_syntax_inits = 1
7272
command -nargs=+ HiLink hi link <args>
7373
else
7474
command -nargs=+ HiLink hi def link <args>

autoload/syntax/angularjs.typescript.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ syntax keyword typescriptAMAttrs contained name requires
6666
" Define the default highlighting.
6767
" For version 5.7 and earlier: only when not done already
6868
" For version 5.8 and later: only when an item doesn't have highlighting yet
69-
if version >= 508 || !exists("did_lisp_syntax_inits")
69+
if version >= 508 || !exists("did_angularjs_typescript_syntax_inits")
7070
if version < 508
71-
let did_lisp_syntax_inits = 1
71+
let did_angularjs_typescript_syntax_inits = 1
7272
command -nargs=+ HiLink hi link <args>
7373
else
7474
command -nargs=+ HiLink hi def link <args>

autoload/syntax/backbone.coffee.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ syntax keyword coffeeBViewAttrs match /$el/
3333
" Define the default highlighting.
3434
" For version 5.7 and earlier: only when not done already
3535
" For version 5.8 and later: only when an item doesn't have highlighting yet
36-
if version >= 508 || !exists("did_lisp_syntax_inits")
36+
if version >= 508 || !exists("did_backbone_coffee_syntax_inits")
3737
if version < 508
38-
let did_lisp_syntax_inits = 1
38+
let did_backbone_coffee_syntax_inits = 1
3939
command -nargs=+ HiLink hi link <args>
4040
else
4141
command -nargs=+ HiLink hi def link <args>

autoload/syntax/backbone.javascript.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ syntax keyword javascriptBViewAttrs match /$el/
3333
" Define the default highlighting.
3434
" For version 5.7 and earlier: only when not done already
3535
" For version 5.8 and later: only when an item doesn't have highlighting yet
36-
if version >= 508 || !exists("did_lisp_syntax_inits")
36+
if version >= 508 || !exists("did_backbone_javascript_syntax_inits")
3737
if version < 508
38-
let did_lisp_syntax_inits = 1
38+
let did_backbone_javascript_syntax_inits = 1
3939
command -nargs=+ HiLink hi link <args>
4040
else
4141
command -nargs=+ HiLink hi def link <args>

autoload/syntax/backbone.ls.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ syntax keyword lsBViewAttrs match /$el/
3333
" Define the default highlighting.
3434
" For version 5.7 and earlier: only when not done already
3535
" For version 5.8 and later: only when an item doesn't have highlighting yet
36-
if version >= 508 || !exists("did_lisp_syntax_inits")
36+
if version >= 508 || !exists("did_backbone_ls_syntax_inits")
3737
if version < 508
38-
let did_lisp_syntax_inits = 1
38+
let did_backbone_ls_syntax_inits = 1
3939
command -nargs=+ HiLink hi link <args>
4040
else
4141
command -nargs=+ HiLink hi def link <args>

autoload/syntax/backbone.typescript.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ syntax keyword typescriptBViewAttrs match /$el/
3333
" Define the default highlighting.
3434
" For version 5.7 and earlier: only when not done already
3535
" For version 5.8 and later: only when an item doesn't have highlighting yet
36-
if version >= 508 || !exists("did_lisp_syntax_inits")
36+
if version >= 508 || !exists("did_backbone_typescript_syntax_inits")
3737
if version < 508
38-
let did_lisp_syntax_inits = 1
38+
let did_backbone_typescript_syntax_inits = 1
3939
command -nargs=+ HiLink hi link <args>
4040
else
4141
command -nargs=+ HiLink hi def link <args>

autoload/syntax/jquery.coffee.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ syntax match jVisibility contained /:\(hidden\|visible\)/
7272
" Define the default highlighting.
7373
" For version 5.7 and earlier: only when not done already
7474
" For version 5.8 and later: only when an item doesn't have highlighting yet
75-
if version >= 508 || !exists("did_lisp_syntax_inits")
75+
if version >= 508 || !exists("did_jquery_coffee_syntax_inits")
7676
if version < 508
77-
let did_lisp_syntax_inits = 1
77+
let did_jquery_coffee_syntax_inits = 1
7878
command -nargs=+ HiLink hi link <args>
7979
else
8080
command -nargs=+ HiLink hi def link <args>

autoload/syntax/jquery.javascript.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ syntax match jVisibility contained /:\(hidden\|visible\)/
7272
" Define the default highlighting.
7373
" For version 5.7 and earlier: only when not done already
7474
" For version 5.8 and later: only when an item doesn't have highlighting yet
75-
if version >= 508 || !exists("did_lisp_syntax_inits")
75+
if version >= 508 || !exists("did_jquery_javascript_syntax_inits")
7676
if version < 508
77-
let did_lisp_syntax_inits = 1
77+
let did_jquery_javascript_syntax_inits = 1
7878
command -nargs=+ HiLink hi link <args>
7979
else
8080
command -nargs=+ HiLink hi def link <args>

0 commit comments

Comments
 (0)