1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-29 01:24:52 +03:00

Add 'cfg' extension to 'ini-file' filetype

'cfg' is another common file extension for ini like files. My use case is about
http://www.buildout.org/ config files.
This commit is contained in:
Benoît Laurent 2016-01-12 21:25:47 +01:00
parent 032219b119
commit fb37a8ec38

View File

@ -1,4 +1,4 @@
hook global BufCreate .*\.(repo|service|target|socket|ini) %{
hook global BufCreate .*\.(repo|service|target|socket|ini|cfg) %{
set buffer filetype ini-file
}