Mercurial > vim
annotate runtime/syntax/qf.vim @ 31495:a2997ac0ca2c v9.0.1080
patch 9.0.1080: the "kitty" terminfo entry is not widespread
Commit: https://github.com/vim/vim/commit/afa3f1cc7258d34c32a299a3cc6aece89f67fb47
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Dec 19 18:56:48 2022 +0000
patch 9.0.1080: the "kitty" terminfo entry is not widespread
Problem: The "kitty" terminfo entry is not widespread, resulting in the
kitty terminal not working properly.
Solution: Go back to using "xterm-kitty" and avoid the problems it causes in
another way.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 19 Dec 2022 20:00:03 +0100 |
parents | 3fc0f57ecb91 |
children | 4027cefc2aab |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
2 " Language: Quickfix window | |
3 " Maintainer: Bram Moolenaar <Bram@vim.org> | |
4 " Last change: 2001 Jan 15 | |
5 | |
6 " Quit when a syntax file was already loaded | |
7 if exists("b:current_syntax") | |
8 finish | |
9 endif | |
10 | |
11 " A bunch of useful C keywords | |
12 syn match qfFileName "^[^|]*" nextgroup=qfSeparator | |
13 syn match qfSeparator "|" nextgroup=qfLineNr contained | |
14 syn match qfLineNr "[^|]*" contained contains=qfError | |
15 syn match qfError "error" contained | |
16 | |
17 " The default highlighting. | |
18 hi def link qfFileName Directory | |
19 hi def link qfLineNr LineNr | |
20 hi def link qfError Error | |
21 | |
22 let b:current_syntax = "qf" | |
23 | |
24 " vim: ts=8 |