diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-08-31 04:38:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-31 04:38:01 +0800 |
commit | 497cf996eb1cef54f049e1cca3661c063949be09 (patch) | |
tree | 4fb3f74191cfb098996aa7f57e61d4e6e6a89114 /test | |
parent | b2c3e9c72ef12a5bc276dec78cdc8dfbd2f5a24b (diff) | |
download | rneovim-497cf996eb1cef54f049e1cca3661c063949be09.tar.gz rneovim-497cf996eb1cef54f049e1cca3661c063949be09.tar.bz2 rneovim-497cf996eb1cef54f049e1cca3661c063949be09.zip |
vim-patch:9.0.1803: runtime(filetype): Add norg language detection (#24948)
runtime(filetype): Add norg markup language detection
closes: vim/vim#12913
https://github.com/vim/vim/commit/03e44a1d70e914504e6151fe88ad1e574cbf0a59
Co-authored-by: NTBBloodbath <bloodbathalchemist@protonmail.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/old/testdir/test_filetype.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/old/testdir/test_filetype.vim b/test/old/testdir/test_filetype.vim index 3ce8e49b27..1c4208d3a4 100644 --- a/test/old/testdir/test_filetype.vim +++ b/test/old/testdir/test_filetype.vim @@ -442,6 +442,7 @@ func s:GetFilenameChecks() abort \ 'nim': ['file.nim', 'file.nims', 'file.nimble'], \ 'ninja': ['file.ninja'], \ 'nix': ['file.nix'], + \ 'norg': ['file.norg'], \ 'nqc': ['file.nqc'], \ 'nroff': ['file.tr', 'file.nr', 'file.roff', 'file.tmac', 'file.mom', 'tmac.file'], \ 'nsis': ['file.nsi', 'file.nsh'], |