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/ld.vim | 85 ----------------------------------------------------------- 1 file changed, 85 deletions(-) delete mode 100644 syntax/ld.vim (limited to 'syntax/ld.vim') diff --git a/syntax/ld.vim b/syntax/ld.vim deleted file mode 100644 index aa972554..00000000 --- a/syntax/ld.vim +++ /dev/null @@ -1,85 +0,0 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'vim') == -1 - -" Vim syntax file -" Language: ld(1) script -" Previous Maintainer: Nikolai Weibull -" Latest Revision: 2006-04-19 - -if exists("b:current_syntax") - finish -endif - -let s:cpo_save = &cpo -set cpo&vim - -syn keyword ldTodo contained TODO FIXME XXX NOTE - -syn region ldComment start='/\*' end='\*/' contains=ldTodo,@Spell - -syn region ldFileName start=+"+ end=+"+ - -syn keyword ldPreProc SECTIONS MEMORY OVERLAY PHDRS VERSION INCLUDE -syn match ldPreProc '\' - -syn match ldNumber display '\<0[xX]\x\+\>' -syn match ldNumber display '\d\+[KM]\>' contains=ldNumberMult -syn match ldNumberMult display '[KM]\>' -syn match ldOctal contained display '\<0\o\+\>' - \ contains=ldOctalZero -syn match ldOctalZero contained display '\<0' -syn match ldOctalError contained display '\<0\o*[89]\d*\>' - - -hi def link ldTodo Todo -hi def link ldComment Comment -hi def link ldFileName String -hi def link ldPreProc PreProc -hi def link ldFunction Identifier -hi def link ldKeyword Keyword -hi def link ldType Type -hi def link ldDataType ldType -hi def link ldOutputType ldType -hi def link ldPTType ldType -hi def link ldSpecial Special -hi def link ldIdentifier Identifier -hi def link ldSections Constant -hi def link ldSpecSections Special -hi def link ldNumber Number -hi def link ldNumberMult PreProc -hi def link ldOctal ldNumber -hi def link ldOctalZero PreProc -hi def link ldOctalError Error - -let b:current_syntax = "ld" - -let &cpo = s:cpo_save -unlet s:cpo_save - -endif -- cgit v1.2.3