diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-03-17 09:40:25 +0100 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2023-03-17 09:41:12 +0100 |
commit | 43d33c5d1abb7ed58237cb5e59d6e1e7dd046b55 (patch) | |
tree | d1ff91e534e104dcc66096c7eef82c2e63583853 /runtime/lua | |
parent | accdb0104eb607a66a9908f24fbd13552d058765 (diff) | |
download | rneovim-43d33c5d1abb7ed58237cb5e59d6e1e7dd046b55.tar.gz rneovim-43d33c5d1abb7ed58237cb5e59d6e1e7dd046b55.tar.bz2 rneovim-43d33c5d1abb7ed58237cb5e59d6e1e7dd046b55.zip |
vim-patch:9.0.1406: ILE RPG files are not recognized
Problem: ILE RPG files are not recognized.
Solution: Add patterns for ILE RPG files. (Andreas Louv, issue vim/vim#12152)
https://github.com/vim/vim/commit/e202ec8a0c89e8ef47a3d38e668b7326fa68510a
Co-authored-by: Andreas Louv <andreas@louv.dk>
Diffstat (limited to 'runtime/lua')
-rw-r--r-- | runtime/lua/vim/filetype.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index 1732623223..7be4b75138 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -883,6 +883,8 @@ local extension = { ron = 'ron', rsc = 'routeros', x = 'rpcgen', + rpgle = 'rpgle', + rpgleinc = 'rpgle', rpl = 'rpl', Srst = 'rrst', srst = 'rrst', |