mirror of
https://github.com/neovim/neovim.git
synced 2025-09-05 19:08:15 +00:00

Problem:
No conceal in qf on `lopen` since 74fcc945
. Repro:
nvim --clean +'tab Man ls' +'norm gO' +lclose +lopen
Solution:
Consider "Table of contents" title.
39 lines
1.1 KiB
VimL
39 lines
1.1 KiB
VimL
" Vim syntax file
|
|
" Language: Quickfix window
|
|
" Maintainer: The Vim Project <https://github.com/vim/vim>
|
|
" Last Change: 2025 Feb 07
|
|
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
|
|
|
|
" Quit when a syntax file was already loaded
|
|
if exists("b:current_syntax")
|
|
finish
|
|
endif
|
|
|
|
syn match qfFileName "^[^|]*" nextgroup=qfSeparator1
|
|
syn match qfSeparator1 "|" contained nextgroup=qfLineNr
|
|
syn match qfLineNr "[^|]*" contained nextgroup=qfSeparator2 contains=@qfType
|
|
syn match qfSeparator2 "|" contained nextgroup=qfText
|
|
syn match qfText ".*" contained
|
|
|
|
syn match qfError "error" contained
|
|
syn cluster qfType contains=qfError
|
|
|
|
" Hide file name and line number for help outline (TOC).
|
|
if has_key(w:, 'qf_toc') || get(w:, 'quickfix_title') =~# '\<TOC$\|\<Table of contents\>'
|
|
setlocal conceallevel=3 concealcursor=nc
|
|
syn match Ignore "^[^|]*|[^|]*| " conceal
|
|
endif
|
|
|
|
" The default highlighting.
|
|
hi def link qfFileName Directory
|
|
hi def link qfLineNr LineNr
|
|
hi def link qfSeparator1 Delimiter
|
|
hi def link qfSeparator2 Delimiter
|
|
hi def link qfText Normal
|
|
|
|
hi def link qfError Error
|
|
|
|
let b:current_syntax = "qf"
|
|
|
|
" vim: ts=8
|