diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-11-22 13:00:10 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-11-22 13:30:38 -0500 |
commit | e2a2efc4325219d889c59c91329695717ed970bc (patch) | |
tree | 0ba15a0930f3fa546d8310a494c36259ffcab4f9 /src | |
parent | 7dfeadb0fcbcedeafc357e60f0b7b2b8916afeaf (diff) | |
download | rneovim-e2a2efc4325219d889c59c91329695717ed970bc.tar.gz rneovim-e2a2efc4325219d889c59c91329695717ed970bc.tar.bz2 rneovim-e2a2efc4325219d889c59c91329695717ed970bc.zip |
vim-patch:8.2.2032: cabalconfig and cabalproject filetypes not recognized
Problem: Cabalconfig and cabalproject filetypes not recognized.
Solution: Detect more cabal files. (Marcin Szamotulski, closes vim/vim#7339)
https://github.com/vim/vim/commit/dcbab75db3ba5e812f119e08cda6a02c6b028a14
N/A patches for version.c:
vim-patch:8.1.1598: update to test file missing
Problem: Update to test file missing.
Solution: Update the popup window test file.
https://github.com/vim/vim/commit/53a95d65840e9d48844fa0798f198eca765176e8
vim-patch:8.1.1601: missing changes to popup window test file
Problem: Missing changes to popup window test file.
Solution: Add those changes.
https://github.com/vim/vim/commit/8da41816316f17382817df3f9449b55df8d39651
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_filetype.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_filetype.vim b/src/nvim/testdir/test_filetype.vim index af8482bdbe..ed75bda7a5 100644 --- a/src/nvim/testdir/test_filetype.vim +++ b/src/nvim/testdir/test_filetype.vim @@ -86,6 +86,8 @@ let s:filename_checks = { \ 'bzr': ['bzr_log.any'], \ 'c': ['enlightenment/file.cfg', 'file.qc', 'file.c'], \ 'cabal': ['file.cabal'], + \ 'cabalconfig': ['cabal.config'], + \ 'cabalproject': ['cabal.project', 'cabal.project.local'], \ 'calendar': ['calendar'], \ 'catalog': ['catalog', 'sgml.catalogfile'], \ 'cdl': ['file.cdl'], |