summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2016-01-28 19:33:21 +0000
committerMaxime Coste <frrrwww@gmail.com>2016-01-28 19:33:21 +0000
commit3349bcd277893eb33bd33feb7f1136faefff987a (patch)
tree162887d289291dbf339abb28cf3a28d1b2b62dcc
parent5388a538efd9eee71a8c0258e7f874c387bdc32c (diff)
Rename 'ini-file' filetype to just 'ini'
-rw-r--r--rc/ini.kak6
1 files changed, 3 insertions, 3 deletions
diff --git a/rc/ini.kak b/rc/ini.kak
index 7740a4db..a0439737 100644
--- a/rc/ini.kak
+++ b/rc/ini.kak
@@ -1,5 +1,5 @@
hook global BufCreate .*\.(repo|service|target|socket|ini|cfg) %{
- set buffer filetype ini-file
+ set buffer filetype ini
}
addhl -group / regions -default code ini-highlighter \
@@ -10,10 +10,10 @@ addhl -group /ini-highlighter/code regex "^\h*([^\[][^=\n]*=)([^\n]*)" 1:identif
addhl -group /ini-highlighter/comment fill comment
-hook global WinSetOption filetype=ini-file %{
+hook global WinSetOption filetype=ini %{
addhl ref ini-highlighter
}
-hook global WinSetOption filetype=(?!ini-file).* %{
+hook global WinSetOption filetype=(?!ini).* %{
rmhl ini-highlighter
}