aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-06-13 14:03:07 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-06-13 15:27:24 -0400
commit8f4ba0a46becf631f00179264938f2be131945cd (patch)
treeb84bc341ee059a5f779b737d8f9904fc328c7ea8 /src
parentac18e26f574e7633184b1785852107c3ee9cf9a1 (diff)
downloadrneovim-8f4ba0a46becf631f00179264938f2be131945cd.tar.gz
rneovim-8f4ba0a46becf631f00179264938f2be131945cd.tar.bz2
rneovim-8f4ba0a46becf631f00179264938f2be131945cd.zip
vim-patch:8.2.2990: Jupyter Notebook files are not recognized
Problem: Jupyter Notebook files are not recognized. Solution: Recognize *.ipynb. (closes vim/vim#8375) https://github.com/vim/vim/commit/2e66b0d1373891f40e2561ccd2d3369de1614bcd
Diffstat (limited to 'src')
-rw-r--r--src/nvim/testdir/test_filetype.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_filetype.vim b/src/nvim/testdir/test_filetype.vim
index 09fdbf4e20..71a7a2cce5 100644
--- a/src/nvim/testdir/test_filetype.vim
+++ b/src/nvim/testdir/test_filetype.vim
@@ -257,7 +257,7 @@ let s:filename_checks = {
\ 'jgraph': ['file.jgr'],
\ 'jovial': ['file.jov', 'file.j73', 'file.jovial'],
\ 'jproperties': ['file.properties', 'file.properties_xx', 'file.properties_xx_xx', 'some.properties_xx_xx_file'],
- \ 'json': ['file.json', 'file.jsonp', 'file.webmanifest', 'Pipfile.lock'],
+ \ 'json': ['file.json', 'file.jsonp', 'file.webmanifest', 'Pipfile.lock', 'file.ipynb'],
\ 'jsp': ['file.jsp'],
\ 'kconfig': ['Kconfig', 'Kconfig.debug', 'Kconfig.file'],
\ 'kivy': ['file.kv'],