From 03cc818fdcd1649b64d42c743c5293c06e3ac07a Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Wed, 6 May 2020 18:43:40 -0400 Subject: vim-patch:8.2.0705: indent tests don't run on CI for FreeBSD Problem: Indent tests don't run on CI for FreeBSD. Solution: Set modeline. (Ozaki Kiichi, closes vim/vim#6048) https://github.com/vim/vim/commit/3657686a0e8fd07428a25c2cf9efcc8b5d33f895 --- runtime/indent/testdir/runtest.vim | 1 + 1 file changed, 1 insertion(+) (limited to 'runtime') diff --git a/runtime/indent/testdir/runtest.vim b/runtime/indent/testdir/runtest.vim index 9502c42f3e..945c2753e9 100644 --- a/runtime/indent/testdir/runtest.vim +++ b/runtime/indent/testdir/runtest.vim @@ -10,6 +10,7 @@ filetype indent on syn on set nowrapscan set report=9999 +set modeline au! SwapExists * call HandleSwapExists() func HandleSwapExists() -- cgit From 393dc2b0f5f6bdbaa4499d07e9a1d90d924d6441 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Thu, 7 May 2020 23:10:39 -0400 Subject: vim-patch:8.2.0713: the pam_environment file is not recognized Problem: The pam_environment file is not recognized. Solution: Add a filetype pattern for pamenv. (closes vim/vim#6051) https://github.com/vim/vim/commit/611548105394fdb76827cd431230c9fbfed39929 --- runtime/filetype.vim | 3 +++ 1 file changed, 3 insertions(+) (limited to 'runtime') diff --git a/runtime/filetype.vim b/runtime/filetype.vim index dc0bca2c60..f2ae298b48 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1129,6 +1129,9 @@ au BufNewFile,BufRead pf.conf setf pf " Pam conf au BufNewFile,BufRead */etc/pam.conf setf pamconf +" Pam environment +au BufNewFile,BufRead .pam_environment setf pamenv + " PApp au BufNewFile,BufRead *.papp,*.pxml,*.pxsl setf papp -- cgit From 076b0949d045d19decb2625c04128200ce8a987f Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Mon, 11 May 2020 23:56:53 -0400 Subject: vim-patch:8.2.0736: some files not recognized as pamenv Problem: Some files not recognized as pamenv. Solution: Add pam_inv.conf. (closes vim/vim#6065) https://github.com/vim/vim/commit/aacc6afdb8cdeb2558e6942dcd65ca0079bec1ee --- runtime/filetype.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime') diff --git a/runtime/filetype.vim b/runtime/filetype.vim index f2ae298b48..0b5003dc44 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1130,7 +1130,7 @@ au BufNewFile,BufRead pf.conf setf pf au BufNewFile,BufRead */etc/pam.conf setf pamconf " Pam environment -au BufNewFile,BufRead .pam_environment setf pamenv +au BufNewFile,BufRead pam_env.conf,.pam_environment setf pamenv " PApp au BufNewFile,BufRead *.papp,*.pxml,*.pxsl setf papp -- cgit