vim-patch:8.2.0360: yaml files are only recognized by the file extension

Problem:    Yaml files are only recognized by the file extension.
Solution:   Check for a line starting with "%YAML". (Jason Franklin)
8eab731328
This commit is contained in:
Jan Edmund Lazo
2020-03-06 19:04:42 -05:00
parent 63d8f08b0b
commit 716bebad48
2 changed files with 5 additions and 0 deletions

View File

@@ -376,6 +376,10 @@ else
elseif s:line1 =~? '-\*-.*erlang.*-\*-'
set ft=erlang
" YAML
elseif s:line1 =~# '^%YAML'
set ft=yaml
" CVS diff
else
let s:lnum = 1