diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-06-15 22:58:29 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-06-18 18:01:44 -0400 |
commit | b4e4c2ad95bc305a894ad78c6880d9017ae69f8f (patch) | |
tree | c46cfcb42d43717c05fce2c291c4d3d3f5ea53a0 /runtime | |
parent | 954aed886ec2416e810c534fbd95818c99cdb71e (diff) | |
download | rneovim-b4e4c2ad95bc305a894ad78c6880d9017ae69f8f.tar.gz rneovim-b4e4c2ad95bc305a894ad78c6880d9017ae69f8f.tar.bz2 rneovim-b4e4c2ad95bc305a894ad78c6880d9017ae69f8f.zip |
vim-patch:8.2.0983: SConstruct file type not recognized
Problem: SConstruct file type not recognized.
Solution: Use python for SConstruct files. (Roland Hieber)
https://github.com/vim/vim/commit/ad72350360d1a68d251da62a6e8610950926278c
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/filetype.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index f24352323d..12a5ca729d 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1292,7 +1292,8 @@ au BufNewFile,BufRead *.pyx,*.pxd setf pyrex " Python, Python Shell Startup and Python Stub Files " Quixote (Python-based web framework) -au BufNewFile,BufRead *.py,*.pyw,.pythonstartup,.pythonrc,*.ptl,*.pyi setf python +au BufNewFile,BufRead *.py,*.pyw,.pythonstartup,.pythonrc setf python +au BufNewFile,BufRead *.ptl,*.pyi,SConstruct setf python " Radiance au BufNewFile,BufRead *.rad,*.mat setf radiance |