diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2022-07-06 08:14:08 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-06 08:14:08 +0200 |
| commit | c68f1d7263cd5296e723d8cfee914c72f58138c3 (patch) | |
| tree | d825324ec6093f6f1ec3552cd446fe89e3cf358d /runtime/filetype.vim | |
| parent | 606af7887bfccba026b792191b55da15a1b575fc (diff) | |
| parent | 78300a1587dc43a363744da28f6d5e4ef40ca0bb (diff) | |
| download | rneovim-c68f1d7263cd5296e723d8cfee914c72f58138c3.tar.gz rneovim-c68f1d7263cd5296e723d8cfee914c72f58138c3.tar.bz2 rneovim-c68f1d7263cd5296e723d8cfee914c72f58138c3.zip | |
Merge pull request #19242 from smjonas/vim-9.0.0042
vim-patch:9.0.{0041,0042}: filetype patterns
Diffstat (limited to 'runtime/filetype.vim')
| -rw-r--r-- | runtime/filetype.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 0f67f45262..ba39bc3ae5 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -2388,7 +2388,7 @@ au BufNewFile,BufRead *fvwm2rc* au BufNewFile,BufRead */tmp/lltmp* call s:StarSetf('gedcom') " Git -au BufNewFile,BufRead */.gitconfig.d/*,/etc/gitconfig.d/* call s:StarSetf('gitconfig') +au BufNewFile,BufRead */.gitconfig.d/*,*/etc/gitconfig.d/* call s:StarSetf('gitconfig') " Gitolite au BufNewFile,BufRead */gitolite-admin/conf/* call s:StarSetf('gitolite') @@ -2453,7 +2453,7 @@ au BufNewFile,BufRead neomuttrc*,Neomuttrc* call s:StarSetf('neomuttrc') au BufNewFile,BufRead tmac.* call s:StarSetf('nroff') " OpenBSD hostname.if -au BufNewFile,BufRead /etc/hostname.* call s:StarSetf('config') +au BufNewFile,BufRead */etc/hostname.* call s:StarSetf('config') " Pam conf au BufNewFile,BufRead */etc/pam.d/* call s:StarSetf('pamconf') |