Skip to content

Commit f69087b

Browse files
author
othree_kao
committed
Fix #6
1 parent 50f34a3 commit f69087b

32 files changed

+116
-116
lines changed

autoload/syntax/angularjs.coffee.vim

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,59 @@
11
" Vim syntax file
22
" Language: AngularJS for coffee
33
" Maintainer: othree <[email protected]>
4-
" Last Change: 2013/04/21
4+
" Last Change: 2013/07/26
55
" Version: 1.1.13.1
66
" URL: http://angularjs.org/
77

88
setlocal iskeyword+=$
99

10-
syntax keyword coffeeAngular angular containedin=ALLBUT,coffeeComment,coffeeString nextgroup=coffeeAngulardot
10+
syntax keyword coffeeAngular angular containedin=ALLBUT,coffeeComment,coffeeLineComment,coffeeString nextgroup=coffeeAngulardot
1111
syntax match coffeeAngulardot contained /\./ nextgroup=coffeeAngularMethods
1212
syntax keyword coffeeAngularMethods contained bind bootstrap copy element equals
1313
syntax keyword coffeeAngularMethods contained extend forEach fromJson identity injector
1414
syntax keyword coffeeAngularMethods contained isArray isDate isDefined isElement isFunction
1515
syntax keyword coffeeAngularMethods contained isNumber isObject isString isUndefined lowercase
1616
syntax keyword coffeeAngularMethods contained mock module noop toJson uppercase version
1717

18-
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeString $anchorScroll $cacheFactory $compile $controller $document
19-
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeString $exceptionHandler $filter $httpBackend
20-
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeString $locale $parse $rootElement
21-
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeString $routeParams $templateCache $window
22-
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeString $cookies $resource $sanitize
18+
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeLineComment,coffeeString $anchorScroll $cacheFactory $compile $controller $document
19+
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeLineComment,coffeeString $exceptionHandler $filter $httpBackend
20+
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeLineComment,coffeeString $locale $parse $rootElement
21+
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeLineComment,coffeeString $routeParams $templateCache $window
22+
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeLineComment,coffeeString $cookies $resource $sanitize
2323

24-
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeString $http nextgroup=coffeeAShttpdot
24+
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeLineComment,coffeeString $http nextgroup=coffeeAShttpdot
2525
syntax match coffeeAShttpdot contained /\./ nextgroup=coffeeAShttpMethods
2626
syntax keyword coffeeAShttpMethods contained get head post put delete jsonp defaults prendingRequests
2727

28-
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeString $interpolate nextgroup=coffeeASinterpolatedot
28+
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeLineComment,coffeeString $interpolate nextgroup=coffeeASinterpolatedot
2929
syntax match coffeeASinterpolatedot contained /\./ nextgroup=coffeeASinterpolateMethods
3030
syntax keyword coffeeASinterpolateMethods contained endSymbol startSymbol
3131

32-
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeString $location nextgroup=coffeeASlocationdot
32+
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeLineComment,coffeeString $location nextgroup=coffeeASlocationdot
3333
syntax match coffeeASlocationdot contained /\./ nextgroup=coffeeASlocationMethods
3434
syntax keyword coffeeASlocationMethods contained absUrl hash host path port protocol replace search url
3535

36-
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeString $log nextgroup=coffeeASlogdot
36+
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeLineComment,coffeeString $log nextgroup=coffeeASlogdot
3737
syntax match coffeeASlogdot contained /\./ nextgroup=coffeeASlogMethods
3838
syntax keyword coffeeASlogMethods contained error info log warn
3939

40-
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeString $q nextgroup=coffeeASqdot
40+
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeLineComment,coffeeString $q nextgroup=coffeeASqdot
4141
syntax match coffeeASqdot contained /\./ nextgroup=coffeeASqMethods
4242
syntax keyword coffeeASqMethods contained all defer reject when
4343

44-
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeString $route nextgroup=coffeeASroutedot
44+
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeLineComment,coffeeString $route nextgroup=coffeeASroutedot
4545
syntax match coffeeASroutedot contained /\./ nextgroup=coffeeASrouteMethods
4646
syntax keyword coffeeASrouteMethods contained reload current route
4747

48-
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeString $timeout nextgroup=coffeeAStimeoutdot
48+
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeLineComment,coffeeString $timeout nextgroup=coffeeAStimeoutdot
4949
syntax match coffeeAStimeoutdot contained /\./ nextgroup=coffeeAStimeoutMethods
5050
syntax keyword coffeeAStimeoutMethods contained cancel
5151

52-
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeString $scope $rootScope nextgroup=coffeeASscopedot
52+
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeLineComment,coffeeString $scope $rootScope nextgroup=coffeeASscopedot
5353
syntax match coffeeASscopedot contained /\./ nextgroup=coffeeASscopeMethods
5454
syntax keyword coffeeASscopeMethods contained $apply $broadcast $destroy $digest $emit $eval $evalAsync $new $on $watch $id
5555

56-
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeString $cookieStore nextgroup=coffeeAScookieStoredot
56+
syntax keyword coffeeAServices containedin=ALLBUT,coffeeComment,coffeeLineComment,coffeeString $cookieStore nextgroup=coffeeAScookieStoredot
5757
syntax match coffeeAScookieStoredot contained /\./ nextgroup=coffeeAScookieStoreMethods
5858
syntax keyword coffeeAScookieStoreMethods contained get put remove
5959

autoload/syntax/angularjs.javascript.vim

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,59 @@
11
" Vim syntax file
22
" Language: AngularJS for javascript
33
" Maintainer: othree <[email protected]>
4-
" Last Change: 2013/04/21
4+
" Last Change: 2013/07/26
55
" Version: 1.1.13.1
66
" URL: http://angularjs.org/
77

88
setlocal iskeyword+=$
99

10-
syntax keyword javascriptAngular angular containedin=ALLBUT,javascriptComment,javascriptString nextgroup=javascriptAngulardot
10+
syntax keyword javascriptAngular angular containedin=ALLBUT,javascriptComment,javascriptLineComment,javascriptString nextgroup=javascriptAngulardot
1111
syntax match javascriptAngulardot contained /\./ nextgroup=javascriptAngularMethods
1212
syntax keyword javascriptAngularMethods contained bind bootstrap copy element equals
1313
syntax keyword javascriptAngularMethods contained extend forEach fromJson identity injector
1414
syntax keyword javascriptAngularMethods contained isArray isDate isDefined isElement isFunction
1515
syntax keyword javascriptAngularMethods contained isNumber isObject isString isUndefined lowercase
1616
syntax keyword javascriptAngularMethods contained mock module noop toJson uppercase version
1717

18-
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptString $anchorScroll $cacheFactory $compile $controller $document
19-
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptString $exceptionHandler $filter $httpBackend
20-
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptString $locale $parse $rootElement
21-
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptString $routeParams $templateCache $window
22-
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptString $cookies $resource $sanitize
18+
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptLineComment,javascriptString $anchorScroll $cacheFactory $compile $controller $document
19+
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptLineComment,javascriptString $exceptionHandler $filter $httpBackend
20+
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptLineComment,javascriptString $locale $parse $rootElement
21+
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptLineComment,javascriptString $routeParams $templateCache $window
22+
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptLineComment,javascriptString $cookies $resource $sanitize
2323

24-
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptString $http nextgroup=javascriptAShttpdot
24+
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptLineComment,javascriptString $http nextgroup=javascriptAShttpdot
2525
syntax match javascriptAShttpdot contained /\./ nextgroup=javascriptAShttpMethods
2626
syntax keyword javascriptAShttpMethods contained get head post put delete jsonp defaults prendingRequests
2727

28-
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptString $interpolate nextgroup=javascriptASinterpolatedot
28+
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptLineComment,javascriptString $interpolate nextgroup=javascriptASinterpolatedot
2929
syntax match javascriptASinterpolatedot contained /\./ nextgroup=javascriptASinterpolateMethods
3030
syntax keyword javascriptASinterpolateMethods contained endSymbol startSymbol
3131

32-
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptString $location nextgroup=javascriptASlocationdot
32+
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptLineComment,javascriptString $location nextgroup=javascriptASlocationdot
3333
syntax match javascriptASlocationdot contained /\./ nextgroup=javascriptASlocationMethods
3434
syntax keyword javascriptASlocationMethods contained absUrl hash host path port protocol replace search url
3535

36-
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptString $log nextgroup=javascriptASlogdot
36+
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptLineComment,javascriptString $log nextgroup=javascriptASlogdot
3737
syntax match javascriptASlogdot contained /\./ nextgroup=javascriptASlogMethods
3838
syntax keyword javascriptASlogMethods contained error info log warn
3939

40-
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptString $q nextgroup=javascriptASqdot
40+
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptLineComment,javascriptString $q nextgroup=javascriptASqdot
4141
syntax match javascriptASqdot contained /\./ nextgroup=javascriptASqMethods
4242
syntax keyword javascriptASqMethods contained all defer reject when
4343

44-
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptString $route nextgroup=javascriptASroutedot
44+
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptLineComment,javascriptString $route nextgroup=javascriptASroutedot
4545
syntax match javascriptASroutedot contained /\./ nextgroup=javascriptASrouteMethods
4646
syntax keyword javascriptASrouteMethods contained reload current route
4747

48-
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptString $timeout nextgroup=javascriptAStimeoutdot
48+
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptLineComment,javascriptString $timeout nextgroup=javascriptAStimeoutdot
4949
syntax match javascriptAStimeoutdot contained /\./ nextgroup=javascriptAStimeoutMethods
5050
syntax keyword javascriptAStimeoutMethods contained cancel
5151

52-
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptString $scope $rootScope nextgroup=javascriptASscopedot
52+
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptLineComment,javascriptString $scope $rootScope nextgroup=javascriptASscopedot
5353
syntax match javascriptASscopedot contained /\./ nextgroup=javascriptASscopeMethods
5454
syntax keyword javascriptASscopeMethods contained $apply $broadcast $destroy $digest $emit $eval $evalAsync $new $on $watch $id
5555

56-
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptString $cookieStore nextgroup=javascriptAScookieStoredot
56+
syntax keyword javascriptAServices containedin=ALLBUT,javascriptComment,javascriptLineComment,javascriptString $cookieStore nextgroup=javascriptAScookieStoredot
5757
syntax match javascriptAScookieStoredot contained /\./ nextgroup=javascriptAScookieStoreMethods
5858
syntax keyword javascriptAScookieStoreMethods contained get put remove
5959

autoload/syntax/angularjs.ls.vim

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,59 @@
11
" Vim syntax file
22
" Language: AngularJS for ls
33
" Maintainer: othree <[email protected]>
4-
" Last Change: 2013/04/21
4+
" Last Change: 2013/07/26
55
" Version: 1.1.13.1
66
" URL: http://angularjs.org/
77

88
setlocal iskeyword+=$
99

10-
syntax keyword lsAngular angular containedin=ALLBUT,lsComment,lsString nextgroup=lsAngulardot
10+
syntax keyword lsAngular angular containedin=ALLBUT,lsComment,lsLineComment,lsString nextgroup=lsAngulardot
1111
syntax match lsAngulardot contained /\./ nextgroup=lsAngularMethods
1212
syntax keyword lsAngularMethods contained bind bootstrap copy element equals
1313
syntax keyword lsAngularMethods contained extend forEach fromJson identity injector
1414
syntax keyword lsAngularMethods contained isArray isDate isDefined isElement isFunction
1515
syntax keyword lsAngularMethods contained isNumber isObject isString isUndefined lowercase
1616
syntax keyword lsAngularMethods contained mock module noop toJson uppercase version
1717

18-
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsString $anchorScroll $cacheFactory $compile $controller $document
19-
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsString $exceptionHandler $filter $httpBackend
20-
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsString $locale $parse $rootElement
21-
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsString $routeParams $templateCache $window
22-
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsString $cookies $resource $sanitize
18+
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsLineComment,lsString $anchorScroll $cacheFactory $compile $controller $document
19+
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsLineComment,lsString $exceptionHandler $filter $httpBackend
20+
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsLineComment,lsString $locale $parse $rootElement
21+
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsLineComment,lsString $routeParams $templateCache $window
22+
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsLineComment,lsString $cookies $resource $sanitize
2323

24-
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsString $http nextgroup=lsAShttpdot
24+
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsLineComment,lsString $http nextgroup=lsAShttpdot
2525
syntax match lsAShttpdot contained /\./ nextgroup=lsAShttpMethods
2626
syntax keyword lsAShttpMethods contained get head post put delete jsonp defaults prendingRequests
2727

28-
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsString $interpolate nextgroup=lsASinterpolatedot
28+
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsLineComment,lsString $interpolate nextgroup=lsASinterpolatedot
2929
syntax match lsASinterpolatedot contained /\./ nextgroup=lsASinterpolateMethods
3030
syntax keyword lsASinterpolateMethods contained endSymbol startSymbol
3131

32-
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsString $location nextgroup=lsASlocationdot
32+
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsLineComment,lsString $location nextgroup=lsASlocationdot
3333
syntax match lsASlocationdot contained /\./ nextgroup=lsASlocationMethods
3434
syntax keyword lsASlocationMethods contained absUrl hash host path port protocol replace search url
3535

36-
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsString $log nextgroup=lsASlogdot
36+
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsLineComment,lsString $log nextgroup=lsASlogdot
3737
syntax match lsASlogdot contained /\./ nextgroup=lsASlogMethods
3838
syntax keyword lsASlogMethods contained error info log warn
3939

40-
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsString $q nextgroup=lsASqdot
40+
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsLineComment,lsString $q nextgroup=lsASqdot
4141
syntax match lsASqdot contained /\./ nextgroup=lsASqMethods
4242
syntax keyword lsASqMethods contained all defer reject when
4343

44-
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsString $route nextgroup=lsASroutedot
44+
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsLineComment,lsString $route nextgroup=lsASroutedot
4545
syntax match lsASroutedot contained /\./ nextgroup=lsASrouteMethods
4646
syntax keyword lsASrouteMethods contained reload current route
4747

48-
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsString $timeout nextgroup=lsAStimeoutdot
48+
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsLineComment,lsString $timeout nextgroup=lsAStimeoutdot
4949
syntax match lsAStimeoutdot contained /\./ nextgroup=lsAStimeoutMethods
5050
syntax keyword lsAStimeoutMethods contained cancel
5151

52-
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsString $scope $rootScope nextgroup=lsASscopedot
52+
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsLineComment,lsString $scope $rootScope nextgroup=lsASscopedot
5353
syntax match lsASscopedot contained /\./ nextgroup=lsASscopeMethods
5454
syntax keyword lsASscopeMethods contained $apply $broadcast $destroy $digest $emit $eval $evalAsync $new $on $watch $id
5555

56-
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsString $cookieStore nextgroup=lsAScookieStoredot
56+
syntax keyword lsAServices containedin=ALLBUT,lsComment,lsLineComment,lsString $cookieStore nextgroup=lsAScookieStoredot
5757
syntax match lsAScookieStoredot contained /\./ nextgroup=lsAScookieStoreMethods
5858
syntax keyword lsAScookieStoreMethods contained get put remove
5959

0 commit comments

Comments
 (0)