cleanup window layout

This commit is contained in:
Barrett Ruth 2025-09-12 17:19:20 -05:00
parent 3f49721657
commit 0db6fa96b4
9 changed files with 118 additions and 76 deletions

17
after/syntax/cp.vim Normal file
View file

@ -0,0 +1,17 @@
if exists("b:current_syntax")
finish
endif
syntax match cpOutputCode /^\[code\]: .*/
syntax match cpOutputTime /^\[time\]: .*/
syntax match cpOutputDebug /^\[debug\]: .*/
syntax match cpOutputMatchesTrue /^\[matches\]: true$/
syntax match cpOutputMatchesFalse /^\[matches\]: false$/
highlight default link cpOutputCode DiagnosticInfo
highlight default link cpOutputTime Comment
highlight default link cpOutputDebug Comment
highlight default link cpOutputMatchesTrue DiffAdd
highlight default link cpOutputMatchesFalse DiffDelete
let b:current_syntax = "cp"