diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-02-02 17:26:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-02 17:26:22 +0100 |
commit | c05b3c3bbdef4018ce70f0c822c4a55654a9c186 (patch) | |
tree | a6add3c32a36977ada8363bacd27ef272cd986bb /runtime/lua | |
parent | d3355ad01c3b9d1dbc62210c29d8e51245f081aa (diff) | |
download | rneovim-c05b3c3bbdef4018ce70f0c822c4a55654a9c186.tar.gz rneovim-c05b3c3bbdef4018ce70f0c822c4a55654a9c186.tar.bz2 rneovim-c05b3c3bbdef4018ce70f0c822c4a55654a9c186.zip |
vim-patch:9.0.1274: FIRRTL files are not recognized (#22102)
Problem: FIRRTL files are not recognized.
Solution: Add a pattern for FIRRTL files. (Amaan Qureshi, closes vim/vim#11931)
https://github.com/vim/vim/commit/685bf83b73d0fe6fd36bb2949bebd6aae66a139e
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 d1a84fcecf..8144731b09 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -385,6 +385,7 @@ local extension = { ['m4gl'] = 'fgl', ['4gl'] = 'fgl', ['4gh'] = 'fgl', + fir = 'firrtl', fish = 'fish', focexec = 'focexec', fex = 'focexec', |