From 27903c5b8656c796564ef073c1ebe77a2f0154e1 Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Thu, 28 Sep 2017 22:18:09 +0200 Subject: Revert inlining basic language pack --- syntax/qf.vim | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 syntax/qf.vim (limited to 'syntax/qf.vim') diff --git a/syntax/qf.vim b/syntax/qf.vim deleted file mode 100644 index 5348ed0a..00000000 --- a/syntax/qf.vim +++ /dev/null @@ -1,28 +0,0 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'vim') == -1 - -" Vim syntax file -" Language: Quickfix window -" Maintainer: Bram Moolenaar -" 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 - -endif -- cgit v1.2.3