mirror of
https://github.com/lifepillar/vim-solarized8.git
synced 2025-12-10 07:46:58 +00:00
Use reverse colors for Error highlight group.
Often (e.g. for Python) Error is used to indicate whitespace mistakes (e.g. too much whitespace). Since in Solarized 8 Error does not have any background colour, these errors are not visible (@fladd). Fixes https://github.com/lifepillar/vim-solarized8/issues/63.
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
" Maintainer: Lifepillar <lifepillar@lifepillar.me>
|
" Maintainer: Lifepillar <lifepillar@lifepillar.me>
|
||||||
" Website: https://github.com/lifepillar/vim-solarized8
|
" Website: https://github.com/lifepillar/vim-solarized8
|
||||||
" License: OSI approved MIT license
|
" License: OSI approved MIT license
|
||||||
" Last Updated: Tue Mar 26 08:40:55 2019
|
" Last Updated: Wed May 1 23:22:13 2019
|
||||||
|
|
||||||
if !(has('termguicolors') && &termguicolors) && !has('gui_running')
|
if !(has('termguicolors') && &termguicolors) && !has('gui_running')
|
||||||
\ && (!exists('&t_Co') || &t_Co < (get(g:, 'solarized_use16', &t_Co < 256) ? 16 : 256))
|
\ && (!exists('&t_Co') || &t_Co < (get(g:, 'solarized_use16', &t_Co < 256) ? 16 : 256))
|
||||||
@@ -163,7 +163,7 @@ if !get(g:, 'solarized_use16', &t_Co < 256)
|
|||||||
hi! link Define PreProc
|
hi! link Define PreProc
|
||||||
hi! link Debug Special
|
hi! link Debug Special
|
||||||
hi! link Delimiter Special
|
hi! link Delimiter Special
|
||||||
hi Error ctermfg=160 ctermbg=NONE guifg=#dc322f guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold
|
hi Error ctermfg=160 ctermbg=230 guifg=#dc322f guibg=#fdf6e3 guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse
|
||||||
hi! link Exception Statement
|
hi! link Exception Statement
|
||||||
hi! link Float Constant
|
hi! link Float Constant
|
||||||
hi! link Function Identifier
|
hi! link Function Identifier
|
||||||
@@ -545,7 +545,7 @@ if !get(g:, 'solarized_use16', &t_Co < 256)
|
|||||||
hi! link Define PreProc
|
hi! link Define PreProc
|
||||||
hi! link Debug Special
|
hi! link Debug Special
|
||||||
hi! link Delimiter Special
|
hi! link Delimiter Special
|
||||||
hi Error ctermfg=160 ctermbg=NONE guifg=#dc322f guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold
|
hi Error ctermfg=160 ctermbg=230 guifg=#dc322f guibg=#fdf6e3 guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse
|
||||||
hi! link Exception Statement
|
hi! link Exception Statement
|
||||||
hi! link Float Constant
|
hi! link Float Constant
|
||||||
hi! link Function Identifier
|
hi! link Function Identifier
|
||||||
@@ -915,7 +915,7 @@ if &background ==# 'dark'
|
|||||||
hi! link Define PreProc
|
hi! link Define PreProc
|
||||||
hi! link Debug Special
|
hi! link Debug Special
|
||||||
hi! link Delimiter Special
|
hi! link Delimiter Special
|
||||||
hi Error ctermfg=1 ctermbg=NONE guifg=#dc322f guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold
|
hi Error ctermfg=1 ctermbg=15 guifg=#dc322f guibg=#fdf6e3 guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse
|
||||||
hi! link Exception Statement
|
hi! link Exception Statement
|
||||||
hi! link Float Constant
|
hi! link Float Constant
|
||||||
hi! link Function Identifier
|
hi! link Function Identifier
|
||||||
@@ -1297,7 +1297,7 @@ hi Constant ctermfg=6 ctermbg=NONE guifg=#2aa198 guibg=NONE guisp=NONE cterm=NON
|
|||||||
hi! link Define PreProc
|
hi! link Define PreProc
|
||||||
hi! link Debug Special
|
hi! link Debug Special
|
||||||
hi! link Delimiter Special
|
hi! link Delimiter Special
|
||||||
hi Error ctermfg=1 ctermbg=NONE guifg=#dc322f guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold
|
hi Error ctermfg=1 ctermbg=15 guifg=#dc322f guibg=#fdf6e3 guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse
|
||||||
hi! link Exception Statement
|
hi! link Exception Statement
|
||||||
hi! link Float Constant
|
hi! link Float Constant
|
||||||
hi! link Function Identifier
|
hi! link Function Identifier
|
||||||
@@ -1639,7 +1639,7 @@ finish
|
|||||||
" Define -> PreProc
|
" Define -> PreProc
|
||||||
" Debug -> Special
|
" Debug -> Special
|
||||||
" Delimiter -> Special
|
" Delimiter -> Special
|
||||||
" Error red none bold
|
" Error red base3 bold,reverse
|
||||||
" Exception -> Statement
|
" Exception -> Statement
|
||||||
" Float -> Constant
|
" Float -> Constant
|
||||||
" Function -> Identifier
|
" Function -> Identifier
|
||||||
@@ -1974,7 +1974,7 @@ finish
|
|||||||
" Define -> PreProc
|
" Define -> PreProc
|
||||||
" Debug -> Special
|
" Debug -> Special
|
||||||
" Delimiter -> Special
|
" Delimiter -> Special
|
||||||
" Error red none bold
|
" Error red base03 bold,reverse
|
||||||
" Exception -> Statement
|
" Exception -> Statement
|
||||||
" Float -> Constant
|
" Float -> Constant
|
||||||
" Function -> Identifier
|
" Function -> Identifier
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
" Maintainer: Lifepillar <lifepillar@lifepillar.me>
|
" Maintainer: Lifepillar <lifepillar@lifepillar.me>
|
||||||
" Website: https://github.com/lifepillar/vim-solarized8
|
" Website: https://github.com/lifepillar/vim-solarized8
|
||||||
" License: OSI approved MIT license
|
" License: OSI approved MIT license
|
||||||
" Last Updated: Tue Mar 26 08:40:59 2019
|
" Last Updated: Wed May 1 23:22:17 2019
|
||||||
|
|
||||||
if !(has('termguicolors') && &termguicolors) && !has('gui_running')
|
if !(has('termguicolors') && &termguicolors) && !has('gui_running')
|
||||||
\ && (!exists('&t_Co') || &t_Co < (get(g:, 'solarized_use16', &t_Co < 256) ? 16 : 256))
|
\ && (!exists('&t_Co') || &t_Co < (get(g:, 'solarized_use16', &t_Co < 256) ? 16 : 256))
|
||||||
@@ -154,7 +154,7 @@ if !get(g:, 'solarized_use16', &t_Co < 256)
|
|||||||
hi! link Define PreProc
|
hi! link Define PreProc
|
||||||
hi! link Debug Special
|
hi! link Debug Special
|
||||||
hi! link Delimiter Special
|
hi! link Delimiter Special
|
||||||
hi Error ctermfg=160 ctermbg=NONE guifg=#dc322f guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold
|
hi Error ctermfg=160 ctermbg=230 guifg=#dc322f guibg=#fdf6e3 guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse
|
||||||
hi! link Exception Statement
|
hi! link Exception Statement
|
||||||
hi! link Float Constant
|
hi! link Float Constant
|
||||||
hi! link Function Identifier
|
hi! link Function Identifier
|
||||||
@@ -520,7 +520,7 @@ if !get(g:, 'solarized_use16', &t_Co < 256)
|
|||||||
hi! link Define PreProc
|
hi! link Define PreProc
|
||||||
hi! link Debug Special
|
hi! link Debug Special
|
||||||
hi! link Delimiter Special
|
hi! link Delimiter Special
|
||||||
hi Error ctermfg=160 ctermbg=NONE guifg=#dc322f guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold
|
hi Error ctermfg=160 ctermbg=230 guifg=#dc322f guibg=#fdf6e3 guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse
|
||||||
hi! link Exception Statement
|
hi! link Exception Statement
|
||||||
hi! link Float Constant
|
hi! link Float Constant
|
||||||
hi! link Function Identifier
|
hi! link Function Identifier
|
||||||
@@ -876,7 +876,7 @@ if &background ==# 'dark'
|
|||||||
hi! link Define PreProc
|
hi! link Define PreProc
|
||||||
hi! link Debug Special
|
hi! link Debug Special
|
||||||
hi! link Delimiter Special
|
hi! link Delimiter Special
|
||||||
hi Error ctermfg=1 ctermbg=NONE guifg=#dc322f guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold
|
hi Error ctermfg=1 ctermbg=15 guifg=#dc322f guibg=#fdf6e3 guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse
|
||||||
hi! link Exception Statement
|
hi! link Exception Statement
|
||||||
hi! link Float Constant
|
hi! link Float Constant
|
||||||
hi! link Function Identifier
|
hi! link Function Identifier
|
||||||
@@ -1242,7 +1242,7 @@ hi Constant ctermfg=6 ctermbg=NONE guifg=#2aa198 guibg=NONE guisp=NONE cterm=NON
|
|||||||
hi! link Define PreProc
|
hi! link Define PreProc
|
||||||
hi! link Debug Special
|
hi! link Debug Special
|
||||||
hi! link Delimiter Special
|
hi! link Delimiter Special
|
||||||
hi Error ctermfg=1 ctermbg=NONE guifg=#dc322f guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold
|
hi Error ctermfg=1 ctermbg=15 guifg=#dc322f guibg=#fdf6e3 guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse
|
||||||
hi! link Exception Statement
|
hi! link Exception Statement
|
||||||
hi! link Float Constant
|
hi! link Float Constant
|
||||||
hi! link Function Identifier
|
hi! link Function Identifier
|
||||||
@@ -1576,7 +1576,7 @@ finish
|
|||||||
" Define -> PreProc
|
" Define -> PreProc
|
||||||
" Debug -> Special
|
" Debug -> Special
|
||||||
" Delimiter -> Special
|
" Delimiter -> Special
|
||||||
" Error red none bold
|
" Error red base3 bold,reverse
|
||||||
" Exception -> Statement
|
" Exception -> Statement
|
||||||
" Float -> Constant
|
" Float -> Constant
|
||||||
" Function -> Identifier
|
" Function -> Identifier
|
||||||
@@ -1901,7 +1901,7 @@ finish
|
|||||||
" Define -> PreProc
|
" Define -> PreProc
|
||||||
" Debug -> Special
|
" Debug -> Special
|
||||||
" Delimiter -> Special
|
" Delimiter -> Special
|
||||||
" Error red none bold
|
" Error red base03 bold,reverse
|
||||||
" Exception -> Statement
|
" Exception -> Statement
|
||||||
" Float -> Constant
|
" Float -> Constant
|
||||||
" Function -> Identifier
|
" Function -> Identifier
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
" Maintainer: Lifepillar <lifepillar@lifepillar.me>
|
" Maintainer: Lifepillar <lifepillar@lifepillar.me>
|
||||||
" Website: https://github.com/lifepillar/vim-solarized8
|
" Website: https://github.com/lifepillar/vim-solarized8
|
||||||
" License: OSI approved MIT license
|
" License: OSI approved MIT license
|
||||||
" Last Updated: Tue Mar 26 08:41:02 2019
|
" Last Updated: Wed May 1 23:22:21 2019
|
||||||
|
|
||||||
if !(has('termguicolors') && &termguicolors) && !has('gui_running')
|
if !(has('termguicolors') && &termguicolors) && !has('gui_running')
|
||||||
\ && (!exists('&t_Co') || &t_Co < (get(g:, 'solarized_use16', &t_Co < 256) ? 16 : 256))
|
\ && (!exists('&t_Co') || &t_Co < (get(g:, 'solarized_use16', &t_Co < 256) ? 16 : 256))
|
||||||
@@ -163,7 +163,7 @@ if !get(g:, 'solarized_use16', &t_Co < 256)
|
|||||||
hi! link Define PreProc
|
hi! link Define PreProc
|
||||||
hi! link Debug Special
|
hi! link Debug Special
|
||||||
hi! link Delimiter Special
|
hi! link Delimiter Special
|
||||||
hi Error ctermfg=160 ctermbg=NONE guifg=#dc322f guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold
|
hi Error ctermfg=160 ctermbg=230 guifg=#dc322f guibg=#fdf6e3 guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse
|
||||||
hi! link Exception Statement
|
hi! link Exception Statement
|
||||||
hi! link Float Constant
|
hi! link Float Constant
|
||||||
hi! link Function Identifier
|
hi! link Function Identifier
|
||||||
@@ -545,7 +545,7 @@ if !get(g:, 'solarized_use16', &t_Co < 256)
|
|||||||
hi! link Define PreProc
|
hi! link Define PreProc
|
||||||
hi! link Debug Special
|
hi! link Debug Special
|
||||||
hi! link Delimiter Special
|
hi! link Delimiter Special
|
||||||
hi Error ctermfg=160 ctermbg=NONE guifg=#dc322f guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold
|
hi Error ctermfg=160 ctermbg=230 guifg=#dc322f guibg=#fdf6e3 guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse
|
||||||
hi! link Exception Statement
|
hi! link Exception Statement
|
||||||
hi! link Float Constant
|
hi! link Float Constant
|
||||||
hi! link Function Identifier
|
hi! link Function Identifier
|
||||||
@@ -915,7 +915,7 @@ if &background ==# 'dark'
|
|||||||
hi! link Define PreProc
|
hi! link Define PreProc
|
||||||
hi! link Debug Special
|
hi! link Debug Special
|
||||||
hi! link Delimiter Special
|
hi! link Delimiter Special
|
||||||
hi Error ctermfg=1 ctermbg=NONE guifg=#dc322f guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold
|
hi Error ctermfg=1 ctermbg=15 guifg=#dc322f guibg=#fdf6e3 guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse
|
||||||
hi! link Exception Statement
|
hi! link Exception Statement
|
||||||
hi! link Float Constant
|
hi! link Float Constant
|
||||||
hi! link Function Identifier
|
hi! link Function Identifier
|
||||||
@@ -1297,7 +1297,7 @@ hi Constant ctermfg=6 ctermbg=NONE guifg=#2aa198 guibg=NONE guisp=NONE cterm=NON
|
|||||||
hi! link Define PreProc
|
hi! link Define PreProc
|
||||||
hi! link Debug Special
|
hi! link Debug Special
|
||||||
hi! link Delimiter Special
|
hi! link Delimiter Special
|
||||||
hi Error ctermfg=1 ctermbg=NONE guifg=#dc322f guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold
|
hi Error ctermfg=1 ctermbg=15 guifg=#dc322f guibg=#fdf6e3 guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse
|
||||||
hi! link Exception Statement
|
hi! link Exception Statement
|
||||||
hi! link Float Constant
|
hi! link Float Constant
|
||||||
hi! link Function Identifier
|
hi! link Function Identifier
|
||||||
@@ -1639,7 +1639,7 @@ finish
|
|||||||
" Define -> PreProc
|
" Define -> PreProc
|
||||||
" Debug -> Special
|
" Debug -> Special
|
||||||
" Delimiter -> Special
|
" Delimiter -> Special
|
||||||
" Error red none bold
|
" Error red base3 bold,reverse
|
||||||
" Exception -> Statement
|
" Exception -> Statement
|
||||||
" Float -> Constant
|
" Float -> Constant
|
||||||
" Function -> Identifier
|
" Function -> Identifier
|
||||||
@@ -1974,7 +1974,7 @@ finish
|
|||||||
" Define -> PreProc
|
" Define -> PreProc
|
||||||
" Debug -> Special
|
" Debug -> Special
|
||||||
" Delimiter -> Special
|
" Delimiter -> Special
|
||||||
" Error red none bold
|
" Error red base03 bold,reverse
|
||||||
" Exception -> Statement
|
" Exception -> Statement
|
||||||
" Float -> Constant
|
" Float -> Constant
|
||||||
" Function -> Identifier
|
" Function -> Identifier
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
" Maintainer: Lifepillar <lifepillar@lifepillar.me>
|
" Maintainer: Lifepillar <lifepillar@lifepillar.me>
|
||||||
" Website: https://github.com/lifepillar/vim-solarized8
|
" Website: https://github.com/lifepillar/vim-solarized8
|
||||||
" License: OSI approved MIT license
|
" License: OSI approved MIT license
|
||||||
" Last Updated: Tue Mar 26 08:41:06 2019
|
" Last Updated: Wed May 1 23:22:25 2019
|
||||||
|
|
||||||
if !(has('termguicolors') && &termguicolors) && !has('gui_running')
|
if !(has('termguicolors') && &termguicolors) && !has('gui_running')
|
||||||
\ && (!exists('&t_Co') || &t_Co < (get(g:, 'solarized_use16', &t_Co < 256) ? 16 : 256))
|
\ && (!exists('&t_Co') || &t_Co < (get(g:, 'solarized_use16', &t_Co < 256) ? 16 : 256))
|
||||||
@@ -163,7 +163,7 @@ if !get(g:, 'solarized_use16', &t_Co < 256)
|
|||||||
hi! link Define PreProc
|
hi! link Define PreProc
|
||||||
hi! link Debug Special
|
hi! link Debug Special
|
||||||
hi! link Delimiter Special
|
hi! link Delimiter Special
|
||||||
hi Error ctermfg=160 ctermbg=NONE guifg=#dc322f guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold
|
hi Error ctermfg=160 ctermbg=230 guifg=#dc322f guibg=#fdf6e3 guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse
|
||||||
hi! link Exception Statement
|
hi! link Exception Statement
|
||||||
hi! link Float Constant
|
hi! link Float Constant
|
||||||
hi! link Function Identifier
|
hi! link Function Identifier
|
||||||
@@ -545,7 +545,7 @@ if !get(g:, 'solarized_use16', &t_Co < 256)
|
|||||||
hi! link Define PreProc
|
hi! link Define PreProc
|
||||||
hi! link Debug Special
|
hi! link Debug Special
|
||||||
hi! link Delimiter Special
|
hi! link Delimiter Special
|
||||||
hi Error ctermfg=160 ctermbg=NONE guifg=#dc322f guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold
|
hi Error ctermfg=160 ctermbg=230 guifg=#dc322f guibg=#fdf6e3 guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse
|
||||||
hi! link Exception Statement
|
hi! link Exception Statement
|
||||||
hi! link Float Constant
|
hi! link Float Constant
|
||||||
hi! link Function Identifier
|
hi! link Function Identifier
|
||||||
@@ -915,7 +915,7 @@ if &background ==# 'dark'
|
|||||||
hi! link Define PreProc
|
hi! link Define PreProc
|
||||||
hi! link Debug Special
|
hi! link Debug Special
|
||||||
hi! link Delimiter Special
|
hi! link Delimiter Special
|
||||||
hi Error ctermfg=1 ctermbg=NONE guifg=#dc322f guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold
|
hi Error ctermfg=1 ctermbg=15 guifg=#dc322f guibg=#fdf6e3 guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse
|
||||||
hi! link Exception Statement
|
hi! link Exception Statement
|
||||||
hi! link Float Constant
|
hi! link Float Constant
|
||||||
hi! link Function Identifier
|
hi! link Function Identifier
|
||||||
@@ -1297,7 +1297,7 @@ hi Constant ctermfg=6 ctermbg=NONE guifg=#2aa198 guibg=NONE guisp=NONE cterm=NON
|
|||||||
hi! link Define PreProc
|
hi! link Define PreProc
|
||||||
hi! link Debug Special
|
hi! link Debug Special
|
||||||
hi! link Delimiter Special
|
hi! link Delimiter Special
|
||||||
hi Error ctermfg=1 ctermbg=NONE guifg=#dc322f guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold
|
hi Error ctermfg=1 ctermbg=15 guifg=#dc322f guibg=#fdf6e3 guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse
|
||||||
hi! link Exception Statement
|
hi! link Exception Statement
|
||||||
hi! link Float Constant
|
hi! link Float Constant
|
||||||
hi! link Function Identifier
|
hi! link Function Identifier
|
||||||
@@ -1639,7 +1639,7 @@ finish
|
|||||||
" Define -> PreProc
|
" Define -> PreProc
|
||||||
" Debug -> Special
|
" Debug -> Special
|
||||||
" Delimiter -> Special
|
" Delimiter -> Special
|
||||||
" Error red none bold
|
" Error red base3 bold,reverse
|
||||||
" Exception -> Statement
|
" Exception -> Statement
|
||||||
" Float -> Constant
|
" Float -> Constant
|
||||||
" Function -> Identifier
|
" Function -> Identifier
|
||||||
@@ -1974,7 +1974,7 @@ finish
|
|||||||
" Define -> PreProc
|
" Define -> PreProc
|
||||||
" Debug -> Special
|
" Debug -> Special
|
||||||
" Delimiter -> Special
|
" Delimiter -> Special
|
||||||
" Error red none bold
|
" Error red base03 bold,reverse
|
||||||
" Exception -> Statement
|
" Exception -> Statement
|
||||||
" Float -> Constant
|
" Float -> Constant
|
||||||
" Function -> Identifier
|
" Function -> Identifier
|
||||||
|
|||||||
@@ -222,7 +222,7 @@ Constant cyan none
|
|||||||
Define -> PreProc
|
Define -> PreProc
|
||||||
Debug -> Special
|
Debug -> Special
|
||||||
Delimiter -> Special
|
Delimiter -> Special
|
||||||
Error red none bold
|
Error red base3 bold,reverse
|
||||||
Exception -> Statement
|
Exception -> Statement
|
||||||
Float -> Constant
|
Float -> Constant
|
||||||
Function -> Identifier
|
Function -> Identifier
|
||||||
@@ -491,7 +491,7 @@ Constant cyan none
|
|||||||
Define -> PreProc
|
Define -> PreProc
|
||||||
Debug -> Special
|
Debug -> Special
|
||||||
Delimiter -> Special
|
Delimiter -> Special
|
||||||
Error red none bold
|
Error red base03 bold,reverse
|
||||||
Exception -> Statement
|
Exception -> Statement
|
||||||
Float -> Constant
|
Float -> Constant
|
||||||
Function -> Identifier
|
Function -> Identifier
|
||||||
|
|||||||
@@ -207,7 +207,7 @@ Constant cyan none
|
|||||||
Define -> PreProc
|
Define -> PreProc
|
||||||
Debug -> Special
|
Debug -> Special
|
||||||
Delimiter -> Special
|
Delimiter -> Special
|
||||||
Error red none bold
|
Error red base3 bold,reverse
|
||||||
Exception -> Statement
|
Exception -> Statement
|
||||||
Float -> Constant
|
Float -> Constant
|
||||||
Function -> Identifier
|
Function -> Identifier
|
||||||
@@ -454,7 +454,7 @@ Constant cyan none
|
|||||||
Define -> PreProc
|
Define -> PreProc
|
||||||
Debug -> Special
|
Debug -> Special
|
||||||
Delimiter -> Special
|
Delimiter -> Special
|
||||||
Error red none bold
|
Error red base03 bold,reverse
|
||||||
Exception -> Statement
|
Exception -> Statement
|
||||||
Float -> Constant
|
Float -> Constant
|
||||||
Function -> Identifier
|
Function -> Identifier
|
||||||
|
|||||||
@@ -218,7 +218,7 @@ Constant cyan none
|
|||||||
Define -> PreProc
|
Define -> PreProc
|
||||||
Debug -> Special
|
Debug -> Special
|
||||||
Delimiter -> Special
|
Delimiter -> Special
|
||||||
Error red none bold
|
Error red base3 bold,reverse
|
||||||
Exception -> Statement
|
Exception -> Statement
|
||||||
Float -> Constant
|
Float -> Constant
|
||||||
Function -> Identifier
|
Function -> Identifier
|
||||||
@@ -487,7 +487,7 @@ Constant cyan none
|
|||||||
Define -> PreProc
|
Define -> PreProc
|
||||||
Debug -> Special
|
Debug -> Special
|
||||||
Delimiter -> Special
|
Delimiter -> Special
|
||||||
Error red none bold
|
Error red base03 bold,reverse
|
||||||
Exception -> Statement
|
Exception -> Statement
|
||||||
Float -> Constant
|
Float -> Constant
|
||||||
Function -> Identifier
|
Function -> Identifier
|
||||||
|
|||||||
@@ -218,7 +218,7 @@ Constant cyan none
|
|||||||
Define -> PreProc
|
Define -> PreProc
|
||||||
Debug -> Special
|
Debug -> Special
|
||||||
Delimiter -> Special
|
Delimiter -> Special
|
||||||
Error red none bold
|
Error red base3 bold,reverse
|
||||||
Exception -> Statement
|
Exception -> Statement
|
||||||
Float -> Constant
|
Float -> Constant
|
||||||
Function -> Identifier
|
Function -> Identifier
|
||||||
@@ -486,7 +486,7 @@ Constant cyan none
|
|||||||
Define -> PreProc
|
Define -> PreProc
|
||||||
Debug -> Special
|
Debug -> Special
|
||||||
Delimiter -> Special
|
Delimiter -> Special
|
||||||
Error red none bold
|
Error red base03 bold,reverse
|
||||||
Exception -> Statement
|
Exception -> Statement
|
||||||
Float -> Constant
|
Float -> Constant
|
||||||
Function -> Identifier
|
Function -> Identifier
|
||||||
|
|||||||
Reference in New Issue
Block a user