summaryrefslogtreecommitdiff
path: root/rc
diff options
context:
space:
mode:
authorBruno Heridet <delapouite@gmail.com>2019-10-25 14:14:30 +0200
committerGitHub <noreply@github.com>2019-10-25 14:14:30 +0200
commit3726fd000c12343cf61ca0448af60ff1925b4bb4 (patch)
treea81a24ca298b9402badf406b95f9b3e491833bad /rc
parentec31d839724cfd0f8431c04509f1f1d2b5fa1290 (diff)
filetype: add support for .make extension
While building fish-shell which uses `cmake`, a lot of regular Makefiles are generated with this extension.
Diffstat (limited to 'rc')
-rw-r--r--rc/filetype/makefile.kak2
1 files changed, 1 insertions, 1 deletions
diff --git a/rc/filetype/makefile.kak b/rc/filetype/makefile.kak
index 76420ac6..2f7fac00 100644
--- a/rc/filetype/makefile.kak
+++ b/rc/filetype/makefile.kak
@@ -1,7 +1,7 @@
# Detection
# ‾‾‾‾‾‾‾‾‾
-hook global BufCreate .*(/?[mM]akefile|\.mk) %{
+hook global BufCreate .*(/?[mM]akefile|\.mk|\.make) %{
set-option buffer filetype makefile
}