]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
vim: after/syntax/perl.vim: highlight die/exit as statementControl
authorSimon Ruderich <simon@ruderich.org>
Sun, 22 Jul 2018 08:32:10 +0000 (10:32 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sun, 22 Jul 2018 08:32:10 +0000 (10:32 +0200)
vim/vim/after/syntax/perl.vim

index 7a45bc13bedad09d44e8d5ed1b57ed8fc2306fd2..3b2e1da0ac95486a380a0964f6c0f67b000e0d96 100644 (file)
@@ -4,7 +4,7 @@
 " Maintainer:   Simon Ruderich <simon@ruderich.org>
 " License:      GPL v3+
 
-" Copyright (C) 2012-2014  Simon Ruderich
+" Copyright (C) 2012-2018  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
@@ -30,6 +30,9 @@ syntax match Error "\<\(continue\|break\)\>"
 " used.
 if exists('g:colors_name') && g:colors_name == 'simon'
     highlight link perlStatementControl statementControl
+    " die/exit is also kind of "statement control" as it terminates the
+    " program.
+    syn match statementControl "\<\%(die\|exit\)\>"
 endif
 
 " Highlight for Inline::C in __DATA__/__END__ section