From 545e7a416310c9ff700b2afed9eef834c8948c8b Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Sun, 7 Aug 2016 14:16:30 -0400 Subject: CheckHealth - Overlay markdown syntax/filetype, don't invent new filetypes/syntaxes. - migrate s:check_ruby() - s:indent_after_line1 - Less-verbose output --- runtime/syntax/health.vim | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 runtime/syntax/health.vim (limited to 'runtime/syntax') diff --git a/runtime/syntax/health.vim b/runtime/syntax/health.vim deleted file mode 100644 index 1e8e522b4d..0000000000 --- a/runtime/syntax/health.vim +++ /dev/null @@ -1,20 +0,0 @@ -if exists("b:current_syntax") - finish -endif - -syntax keyword healthError ERROR -highlight link healthError Error - -syntax keyword healthWarning WARNING -highlight link healthWarning Todo - -syntax keyword healthInfo INFO -highlight link healthInfo Identifier - -syntax keyword healthSuccess SUCCESS -highlight link healthSuccess Function - -syntax keyword healthSuggestion SUGGESTION -highlight link healthSuggestion String - -let b:current_syntax = "health" -- cgit