mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 9.0.1256: NetworkManager connection files are not recognized
Problem: NetworkManager connection files are not recognized. Solution: Add a pattern for NetworkManager connection files. (closes #11893)
This commit is contained in:
parent
8fe5b9c8c1
commit
04e4f1d985
@ -1399,6 +1399,7 @@ au BufNewFile,BufRead pf.conf setf pf
|
|||||||
" ini style config files, using # comments
|
" ini style config files, using # comments
|
||||||
au BufNewFile,BufRead */etc/pacman.conf,mpv.conf setf confini
|
au BufNewFile,BufRead */etc/pacman.conf,mpv.conf setf confini
|
||||||
au BufNewFile,BufRead */.aws/config,*/.aws/credentials setf confini
|
au BufNewFile,BufRead */.aws/config,*/.aws/credentials setf confini
|
||||||
|
au BufNewFile,BufRead *.nmconnection setf confini
|
||||||
|
|
||||||
" Pacman hooks
|
" Pacman hooks
|
||||||
au BufNewFile,BufRead *.hook
|
au BufNewFile,BufRead *.hook
|
||||||
|
@ -121,7 +121,7 @@ let s:filename_checks = {
|
|||||||
\ 'conaryrecipe': ['file.recipe'],
|
\ 'conaryrecipe': ['file.recipe'],
|
||||||
\ 'conf': ['auto.master'],
|
\ 'conf': ['auto.master'],
|
||||||
\ 'config': ['configure.in', 'configure.ac', '/etc/hostname.file', 'any/etc/hostname.file'],
|
\ 'config': ['configure.in', 'configure.ac', '/etc/hostname.file', 'any/etc/hostname.file'],
|
||||||
\ 'confini': ['/etc/pacman.conf', 'any/etc/pacman.conf', 'mpv.conf', 'any/.aws/config', 'any/.aws/credentials'],
|
\ 'confini': ['/etc/pacman.conf', 'any/etc/pacman.conf', 'mpv.conf', 'any/.aws/config', 'any/.aws/credentials', 'file.nmconnection'],
|
||||||
\ 'context': ['tex/context/any/file.tex', 'file.mkii', 'file.mkiv', 'file.mkvi', 'file.mkxl', 'file.mklx'],
|
\ 'context': ['tex/context/any/file.tex', 'file.mkii', 'file.mkiv', 'file.mkvi', 'file.mkxl', 'file.mklx'],
|
||||||
\ 'cook': ['file.cook'],
|
\ 'cook': ['file.cook'],
|
||||||
\ 'cpp': ['file.cxx', 'file.c++', 'file.hh', 'file.hxx', 'file.hpp', 'file.ipp', 'file.moc', 'file.tcc', 'file.inl', 'file.tlh'],
|
\ 'cpp': ['file.cxx', 'file.c++', 'file.hh', 'file.hxx', 'file.hpp', 'file.ipp', 'file.moc', 'file.tcc', 'file.inl', 'file.tlh'],
|
||||||
|
@ -695,6 +695,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1256,
|
||||||
/**/
|
/**/
|
||||||
1255,
|
1255,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user