X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=vim%2Fafter%2Fsyntax%2Fperl.vim;h=3b2e1da0ac95486a380a0964f6c0f67b000e0d96;hb=HEAD;hp=5cf6514ce032eb16283f6d49d07f6b792c8f7455;hpb=17d200db44f90264844be6c15fd70f2fef6af3d0;p=config%2Fdotfiles.git diff --git a/vim/after/syntax/perl.vim b/vim/after/syntax/perl.vim deleted file mode 100644 index 5cf6514..0000000 --- a/vim/after/syntax/perl.vim +++ /dev/null @@ -1,33 +0,0 @@ -" Vim syntax file -" -" Language: Perl -" Maintainer: Simon Ruderich -" License: GPL v3+ - -" Copyright (C) 2012 Simon Ruderich -" -" This file is free software: you can redistribute it and/or modify -" it under the terms of the GNU General Public License as published by -" the Free Software Foundation, either version 3 of the License, or -" (at your option) any later version. -" -" This file is distributed in the hope that it will be useful, -" but WITHOUT ANY WARRANTY; without even the implied warranty of -" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -" GNU General Public License for more details. -" -" You should have received a copy of the GNU General Public License -" along with this file. If not, see . - - -" Use SpecialComment to highlight shebangs. -highlight link perlSharpBang SpecialComment - -" I never use continue and break, and always confuse them with next and last. -syntax match Error "\" - -" Highlight statement control keywords differently when my color scheme is -" used. -if exists('g:colors_name') && g:colors_name == 'simon' - highlight link perlStatementControl statementControl -endif