diff options
author | Christian Clason <christian.clason@uni-due.de> | 2021-08-15 11:22:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-15 11:22:30 +0200 |
commit | 0f2af87a382f57fab13f0127d84f3cfa27e15ec3 (patch) | |
tree | 0859bb74f761aa2c0acb32bae805a744cb3128ec /src | |
parent | d805eb3e0550ddbbcb7a59120ad93cd1bfad12f7 (diff) | |
parent | 65f32f0f195fbf7df2478f31cab345d00a6673a4 (diff) | |
download | rneovim-0f2af87a382f57fab13f0127d84f3cfa27e15ec3.tar.gz rneovim-0f2af87a382f57fab13f0127d84f3cfa27e15ec3.tar.bz2 rneovim-0f2af87a382f57fab13f0127d84f3cfa27e15ec3.zip |
Merge pull request #15320 from neovim/julia
vim-patch:8.2.3283: Julia filetype is not recognized
vim-patch:6aa5729: Add Julia runtime files
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 4ab58cd084..c155dbad50 100644 --- a/src/nvim/testdir/test_filetype.vim +++ b/src/nvim/testdir/test_filetype.vim @@ -263,6 +263,7 @@ let s:filename_checks = { \ 'json': ['file.json', 'file.jsonp', 'file.json-patch', 'file.webmanifest', 'Pipfile.lock', 'file.ipynb'], \ 'jsonc': ['file.jsonc'], \ 'jsp': ['file.jsp'], + \ 'julia': ['file.jl'], \ 'kconfig': ['Kconfig', 'Kconfig.debug', 'Kconfig.file'], \ 'kivy': ['file.kv'], \ 'kix': ['file.kix'], @@ -754,6 +755,7 @@ func Test_pp_file() split Xfile.pp call assert_equal('pascal', &filetype) bwipe! + unlet g:filetype_pp " Test dist#ft#FTpp() call writefile(['{ pascal comment'], 'Xfile.pp') |