filetype: add support for .make extension

While building fish-shell which uses `cmake`, a lot of regular Makefiles are generated with this extension.
This commit is contained in:
Bruno Heridet 2019-10-25 14:14:30 +02:00 committed by GitHub
parent ec31d83972
commit 3726fd000c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
# Detection # Detection
# ‾‾‾‾‾‾‾‾‾ # ‾‾‾‾‾‾‾‾‾
hook global BufCreate .*(/?[mM]akefile|\.mk) %{ hook global BufCreate .*(/?[mM]akefile|\.mk|\.make) %{
set-option buffer filetype makefile set-option buffer filetype makefile
} }