diff options
author | Kartik Agaram <vc@akkartik.com> | 2018-12-27 23:17:34 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2018-12-27 23:17:34 -0800 |
commit | 58abd047ec748026d9e006eb0765ae81fa03d918 (patch) | |
tree | d8d8d8f1ca220edbb901a5e107adef75171b0960 /subx | |
parent | 5beb25b508812b68c014a71f664be7ae45bc3c13 (diff) | |
download | mu-58abd047ec748026d9e006eb0765ae81fa03d918.tar.gz |
4876
Diffstat (limited to 'subx')
-rw-r--r-- | subx/subx.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subx/subx.vim b/subx/subx.vim index 1dcf33ee..763b835d 100644 --- a/subx/subx.vim +++ b/subx/subx.vim @@ -57,7 +57,7 @@ syntax match subxGlobal %\(/\)\@<!\<[A-Z][a-z0-9_-]*\>% | highlight link subxGlo highlight SpecialChar ctermfg=160 " functions but not tests, globals or internal functions -syntax match subxFunction "^\(test_\)\@<![a-z][^ ]*\(:\)\@=" | highlight subxFunction ctermfg=130 +syntax match subxFunction "^\(test_\)\@<![a-z][^ ]*\(:\)\@=" | highlight subxFunction cterm=underline ctermfg=130 " tests starting with 'test-'; dark:34 light:64 syntax match subxTest "^test-[^ ]*\(:\)\@=" | highlight subxTest ctermfg=64 " internal functions starting with '_' |