diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-03-17 09:42:01 +0100 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2023-03-17 10:06:56 +0100 |
commit | f83d8ea2798c87e441801ce5f08291808bf6ddbc (patch) | |
tree | b06cd61e43e597ab828653554515a28fa7ec1f53 /runtime/lua | |
parent | d7746b6ef1dcb64b3fc4ba744eafc69780772e26 (diff) | |
download | rneovim-f83d8ea2798c87e441801ce5f08291808bf6ddbc.tar.gz rneovim-f83d8ea2798c87e441801ce5f08291808bf6ddbc.tar.bz2 rneovim-f83d8ea2798c87e441801ce5f08291808bf6ddbc.zip |
vim-patch:9.0.1408: QMLdir files are not recognized
Problem: QMLdir files are not recognized.
Solution: Add a pattern for QMLdir files. (Amaan Qureshi, closes vim/vim#12161)
https://github.com/vim/vim/commit/1505bef5c482a48e704644e6172be91c07ef1d12
Co-authored-by: Amaan Qureshi <amaanq12@gmail.com>
Diffstat (limited to 'runtime/lua')
-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 9eb03c776a..f5353b853d 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -1593,6 +1593,7 @@ local filename = { ['.pythonstartup'] = 'python', ['.pythonrc'] = 'python', SConstruct = 'python', + qmldir = 'qmldir', ['.Rprofile'] = 'r', ['Rprofile'] = 'r', ['Rprofile.site'] = 'r', |