Mercurial > dotfiles
view dot_config/nvim/syntax/qf.vim @ 1054:d3fa07d2c197
feat: enable inline diagnostics in helix
author | Zeger Van de Vannet <zeger@vandevan.net> |
---|---|
date | Mon, 15 Jul 2024 20:52:20 +0200 |
parents | 08bb1c92e5e5 |
children |
line wrap: on
line source
if exists('b:current_syntax') finish endif syn match qfFileName /^[^│]*/ nextgroup=qfSeparatorLeft syn match qfSeparatorLeft /│/ contained nextgroup=qfLineNr syn match qfLineNr /[^│]*/ contained nextgroup=qfSeparatorRight syn match qfSeparatorRight '│' contained nextgroup=qfError,qfWarning,qfInfo,qfNote syn match qfError / E .*$/ contained syn match qfWarning / W .*$/ contained syn match qfInfo / I .*$/ contained syn match qfNote / [NH] .*$/ contained hi def link qfFileName Directory hi def link qfSeparatorLeft Delimiter hi def link qfSeparatorRight Delimiter hi def link qfLineNr LineNr hi def link qfError DiagnosticSignError hi def link qfWarning DiagnosticSignWarn hi def link qfInfo DiagnosticSignInfo hi def link qfNote DiagnosticSignNote let b:current_syntax = 'qf'