diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-08-07 14:16:30 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-08-21 21:25:33 -0400 |
commit | 545e7a416310c9ff700b2afed9eef834c8948c8b (patch) | |
tree | 1276c6988560584052513fb76cd617664ed161b9 /runtime/syntax | |
parent | 2cc523c3afd3c98e80499409182ca96708d996f4 (diff) | |
download | rneovim-545e7a416310c9ff700b2afed9eef834c8948c8b.tar.gz rneovim-545e7a416310c9ff700b2afed9eef834c8948c8b.tar.bz2 rneovim-545e7a416310c9ff700b2afed9eef834c8948c8b.zip |
CheckHealth
- Overlay markdown syntax/filetype, don't invent new filetypes/syntaxes.
- migrate s:check_ruby()
- s:indent_after_line1
- Less-verbose output
Diffstat (limited to 'runtime/syntax')
-rw-r--r-- | runtime/syntax/health.vim | 20 |
1 files changed, 0 insertions, 20 deletions
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" |