forked from cocopon/iceberg.vim
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Normalize vim-javascript syntax highlighting
Use orange for actual definition (not invocation) of function names or method names. Use blue for keywords such as 'function' and 'class'. Finally, use cyan for actual class names. This limits the use of orange to the actual names of functions/methonds at their definition site.
- Loading branch information
Showing
2 changed files
with
14 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
" | ||
" File: iceberg.vim | ||
" Maintainer: cocopon <[email protected]> | ||
" Modified: 2018-06-24 10:37+0900 | ||
" Modified: 2018-06-24 19:45-0500 | ||
" License: MIT | ||
|
||
|
||
|
@@ -149,10 +149,12 @@ hi! link graphqlIdentifier Normal | |
hi! link graphqlOperator Normal | ||
hi! link graphqlStructure Statement | ||
hi! link jsArrowFunction Operator | ||
hi! link jsClassDefinition Type | ||
hi! link jsClassFuncName Function | ||
hi! link jsClassMethodType Statement | ||
hi! link jsExport Statement | ||
hi! link jsFuncName Normal | ||
hi! link jsFunction Function | ||
hi! link jsFuncName Function | ||
hi! link jsFunction Statement | ||
hi! link jsGlobalObjects Statement | ||
hi! link jsModuleKeywords Statement | ||
hi! link jsModuleOperators Statement | ||
|
@@ -172,15 +174,15 @@ hi! link SignifySignChange GitGutterChange | |
hi! link SignifySignChangeDelete GitGutterChangeDelete | ||
hi! link SignifySignDelete GitGutterDelete | ||
hi! link SignifySignDeleteFirstLine SignifySignDelete | ||
hi! link StartifyNumber Special | ||
hi! link StartifyBracket Comment | ||
hi! link StartifyFile String | ||
hi! link StartifyFooter Constant | ||
hi! link StartifyHeader Constant | ||
hi! link StartifyNumber Special | ||
hi! link StartifyPath Comment | ||
hi! link StartifySection Statement | ||
hi! link StartifySlash Comment | ||
hi! link StartifyBracket Comment | ||
hi! link StartifyHeader Constant | ||
hi! link StartifyFooter Constant | ||
hi! link StartifySpecial Normal | ||
hi! link StartifySection Statement | ||
hi! link svssBraces Delimiter | ||
hi! link swiftIdentifier Normal | ||
hi! link typescriptAjaxMethods Normal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters