diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-12-23 17:36:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-23 17:36:41 +0100 |
commit | 3ea1524cf8a7d80d1034011462fd9611fdf385f1 (patch) | |
tree | d330c62c4413de283fa79ddc806b0855c24541fc /runtime/lua/vim | |
parent | 2d7599248b9e02dca7828593028f8adff7191294 (diff) | |
download | rneovim-3ea1524cf8a7d80d1034011462fd9611fdf385f1.tar.gz rneovim-3ea1524cf8a7d80d1034011462fd9611fdf385f1.tar.bz2 rneovim-3ea1524cf8a7d80d1034011462fd9611fdf385f1.zip |
vim-patch:9.0.1090: FHIR Shorthand files are not recognized (#21515)
Problem: FHIR Shorthand files are not recognized.
Solution: Add a pattern to detect FSH files. (Matthew Gramigna,
closes vim/vim#11738)
https://github.com/vim/vim/commit/c9207d5d79310bd4628ce46d8db588fac17878a0
Co-authored-by: mgramigna <mgramigna@mitre.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 b47013122d..9952af821e 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -419,6 +419,7 @@ local extension = { fs = function(path, bufnr) return require('vim.filetype.detect').fs(bufnr) end, + fsh = 'fsh', fsi = 'fsharp', fsx = 'fsharp', fusion = 'fusion', |