view runtime/syntax/qf.vim @ 13373:0802633a0b2d v8.0.1560

patch 8.0.1560: build failure without GUI on MS-Windows commit https://github.com/vim/vim/commit/3767b61ad99fe6ff2cace2dccb5d35331786735f Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 3 19:51:58 2018 +0100 patch 8.0.1560: build failure without GUI on MS-Windows Problem: Build failure without GUI on MS-Windows. Solution: Adjust #ifdef for vcol2col().
author Christian Brabandt <cb@256bit.org>
date Sat, 03 Mar 2018 20:00:07 +0100
parents 3fc0f57ecb91
children 4027cefc2aab
line wrap: on
line source

" Vim syntax file
" Language:	Quickfix window
" Maintainer:	Bram Moolenaar <Bram@vim.org>
" Last change:	2001 Jan 15

" Quit when a syntax file was already loaded
if exists("b:current_syntax")
  finish
endif

" A bunch of useful C keywords
syn match	qfFileName	"^[^|]*" nextgroup=qfSeparator
syn match	qfSeparator	"|" nextgroup=qfLineNr contained
syn match	qfLineNr	"[^|]*" contained contains=qfError
syn match	qfError		"error" contained

" The default highlighting.
hi def link qfFileName	Directory
hi def link qfLineNr	LineNr
hi def link qfError	Error

let b:current_syntax = "qf"

" vim: ts=8