mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
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:
parent
63d8f08b0b
commit
716bebad48
@ -376,6 +376,10 @@ else
|
|||||||
elseif s:line1 =~? '-\*-.*erlang.*-\*-'
|
elseif s:line1 =~? '-\*-.*erlang.*-\*-'
|
||||||
set ft=erlang
|
set ft=erlang
|
||||||
|
|
||||||
|
" YAML
|
||||||
|
elseif s:line1 =~# '^%YAML'
|
||||||
|
set ft=yaml
|
||||||
|
|
||||||
" CVS diff
|
" CVS diff
|
||||||
else
|
else
|
||||||
let s:lnum = 1
|
let s:lnum = 1
|
||||||
|
@ -600,6 +600,7 @@ let s:script_checks = {
|
|||||||
\ 'haskell': [['#!/path/haskell']],
|
\ 'haskell': [['#!/path/haskell']],
|
||||||
\ 'cpp': [['// Standard iostream objects -*- C++ -*-'],
|
\ 'cpp': [['// Standard iostream objects -*- C++ -*-'],
|
||||||
\ ['// -*- C++ -*-']],
|
\ ['// -*- C++ -*-']],
|
||||||
|
\ 'yaml': [['%YAML 1.2']],
|
||||||
\ }
|
\ }
|
||||||
|
|
||||||
func Test_script_detection()
|
func Test_script_detection()
|
||||||
|
Loading…
Reference in New Issue
Block a user