diff --git a/colors/iceberg.vim b/colors/iceberg.vim index 10e6394..547df7e 100644 --- a/colors/iceberg.vim +++ b/colors/iceberg.vim @@ -5,7 +5,7 @@ " " File: iceberg.vim " Maintainer: cocopon -" Modified: 2021-12-28 09:50+0900 +" Modified: 2022-04-26 21:56+0900 " License: MIT @@ -430,6 +430,7 @@ hi! link TSString String hi! link TSStringRegex String hi! link TSStringEscape Special hi! link TSTag htmlTagName +hi! link TSTagAttribute htmlArg hi! link TSTagDelimiter htmlTagName hi! link TSText icebergNormalFg hi! link TSTitle Title diff --git a/src/iceberg.vim b/src/iceberg.vim index 21382ef..995e74a 100644 --- a/src/iceberg.vim +++ b/src/iceberg.vim @@ -862,6 +862,7 @@ function! s:create_links() abort call add(links, pgmnt#hi#link('TSStringRegex', 'String')) call add(links, pgmnt#hi#link('TSStringEscape', 'Special')) call add(links, pgmnt#hi#link('TSTag', 'htmlTagName')) + call add(links, pgmnt#hi#link('TSTagAttribute', 'htmlArg')) call add(links, pgmnt#hi#link('TSTagDelimiter', 'htmlTagName')) call add(links, pgmnt#hi#link('TSText', 'icebergNormalFg')) call add(links, pgmnt#hi#link('TSTitle', 'Title'))