diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-08-09 22:34:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-09 22:34:39 +0200 |
commit | 90ed7ee1123d128b817de5ff154dcd963ca1af3f (patch) | |
tree | 05c0f20955d3eac6a34f975849325271d3dd485c /runtime/lua/vim | |
parent | aaeb1a8cd18741ff17fd030eb05a132bb9f99430 (diff) | |
download | rneovim-90ed7ee1123d128b817de5ff154dcd963ca1af3f.tar.gz rneovim-90ed7ee1123d128b817de5ff154dcd963ca1af3f.tar.bz2 rneovim-90ed7ee1123d128b817de5ff154dcd963ca1af3f.zip |
vim-patch:44ff25d5243b (#24625)
* vim-patch:44ff25d5243b
PyPA manifest files are not recognized (vim/vim#12707)
Problem: PyPA manifest files are not recognized.
Solution: Add a pattern to match PyPA manifest files.
https://github.com/vim/vim/commit/44ff25d5243b6d4f7ee88b46d1254aec0b27f4eb
Co-authored-by: ObserverOfTime <chronobserver@disroot.org>
Diffstat (limited to 'runtime/lua/vim')
-rw-r--r-- | runtime/lua/vim/filetype.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index 6359f4a7c2..b415247293 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -1402,6 +1402,7 @@ local filename = { ['/etc/protocols'] = 'protocols', INDEX = detect.psf, INFO = detect.psf, + ['MANIFEST.in'] = 'pymanifest', ['.pythonstartup'] = 'python', ['.pythonrc'] = 'python', SConstruct = 'python', |