mirror of
https://github.com/neovim/neovim.git
synced 2025-09-05 19:08:15 +00:00
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)
c9207d5d79
Co-authored-by: mgramigna <mgramigna@mitre.org>
This commit is contained in:
@@ -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',
|
||||
|
@@ -204,6 +204,7 @@ let s:filename_checks = {
|
||||
\ 'fpcmake': ['file.fpc'],
|
||||
\ 'framescript': ['file.fsl'],
|
||||
\ 'freebasic': ['file.fb'],
|
||||
\ 'fsh': ['file.fsh'],
|
||||
\ 'fsharp': ['file.fs', 'file.fsi', 'file.fsx'],
|
||||
\ 'fstab': ['fstab', 'mtab'],
|
||||
\ 'fusion': ['file.fusion'],
|
||||
|
Reference in New Issue
Block a user