aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-06-25 20:49:48 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-07-04 10:05:34 -0400
commit43a2e5fe4b4e107a53ccd5edbf2f3c0a97d79f6e (patch)
treeb37d93e712a62973d1f0b1c63c5f53980f02627c /runtime
parentbd5f0e9695cb21c8b97f844ce21432ee8d06b7ed (diff)
downloadrneovim-43a2e5fe4b4e107a53ccd5edbf2f3c0a97d79f6e.tar.gz
rneovim-43a2e5fe4b4e107a53ccd5edbf2f3c0a97d79f6e.tar.bz2
rneovim-43a2e5fe4b4e107a53ccd5edbf2f3c0a97d79f6e.zip
vim-patch:8.2.1055: no filetype set for pacman config files
Problem: No filetype set for pacman config files. Solution: Recognize pacman.conf and *.hook. (Guido Cella, closes vim/vim#6335) https://github.com/vim/vim/commit/73b4465ba7f170c5a1701ad908144970e758b1f5
Diffstat (limited to 'runtime')
-rw-r--r--runtime/filetype.vim11
1 files changed, 10 insertions, 1 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index 6f31eeb832..b93e91387f 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -1130,8 +1130,17 @@ au BufNewFile,BufRead *.ora setf ora
" Packet filter conf
au BufNewFile,BufRead pf.conf setf pf
+" Pacman Config (close enough to dosini)
+au BufNewFile,BufRead */etc/pacman.conf setf dosini
+
+" Pacman hooks
+au BufNewFile,BufRead *.hook
+ \ if getline(1) == '[Trigger]' |
+ \ setf dosini |
+ \ endif
+
" Pam conf
-au BufNewFile,BufRead */etc/pam.conf setf pamconf
+au BufNewFile,BufRead */etc/pam.conf setf pamconf
" Pam environment
au BufNewFile,BufRead pam_env.conf,.pam_environment setf pamenv