diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-03-31 22:16:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-31 22:16:25 +0200 |
commit | 38ba2a75fcbb3a893bf8b22838ed06fec6228509 (patch) | |
tree | cb5284354b178b0dfac22656c2c3a1248afca443 /src | |
parent | dbcb76bd7a803dff82bb12b4e452ee34d2a67c09 (diff) | |
download | rneovim-38ba2a75fcbb3a893bf8b22838ed06fec6228509.tar.gz rneovim-38ba2a75fcbb3a893bf8b22838ed06fec6228509.tar.bz2 rneovim-38ba2a75fcbb3a893bf8b22838ed06fec6228509.zip |
vim-patch:8.2.4658: org-mode files are not recognized (#17939)
Problem: Org-mode files are not recognized.
Solution: Add patterns to recognize "org" files. (closes vim/vim#10046)
https://github.com/vim/vim/commit/3a6f952cc87065a4cf1f6502b2054ba99fdf45ed
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_filetype.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_filetype.vim b/src/nvim/testdir/test_filetype.vim index 839d160e39..dd08d8bd09 100644 --- a/src/nvim/testdir/test_filetype.vim +++ b/src/nvim/testdir/test_filetype.vim @@ -381,6 +381,7 @@ let s:filename_checks = { \ 'opam': ['opam', 'file.opam', 'file.opam.template'], \ 'openroad': ['file.or'], \ 'ora': ['file.ora'], + \ 'org': ['file.org', 'file.org_archive'], \ 'pamconf': ['/etc/pam.conf', '/etc/pam.d/file', 'any/etc/pam.conf', 'any/etc/pam.d/file'], \ 'pamenv': ['/etc/security/pam_env.conf', '/home/user/.pam_environment', '.pam_environment', 'pam_env.conf'], \ 'papp': ['file.papp', 'file.pxml', 'file.pxsl'], |