vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit 37663c686bc482067bb195fcf2cc85b03b017915
parent f6030eb5e7106c9a3c719b1b9b7817ec5c87961c
Author: Hugo Rivera <6373447+roguh@users.noreply.github.com>
Date:   Mon, 19 Feb 2018 09:44:58 -0700

Add .yml as a YAML file extension

Diffstat:
Mlua/plugins/filetype.lua | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lua/plugins/filetype.lua b/lua/plugins/filetype.lua @@ -411,7 +411,7 @@ vis.ftdetect.filetypes = { ext = {"%.xtend$" }, }, yaml = { - ext = { "%.yaml$" }, + ext = { "%.yaml$", "%.yml$" }, mime = { "text/x-yaml" }, }, }