vim-patch:9.0.1351: Dhall files are not recognized (#22393)

Problem:    Dhall files are not recognized.
Solution:   Add patterns for Dhall files. (Amaan Qureshi, closes vim/vim#12052)

def5521752

Co-authored-by: Amaan Qureshi <amaanq12@gmail.com>
This commit is contained in:
Christian Clason 2023-02-24 17:50:37 +01:00 committed by GitHub
parent 4297127f14
commit 15cce77b38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -296,6 +296,7 @@ local extension = {
desc = 'desc',
directory = 'desktop',
desktop = 'desktop',
dhall = 'dhall',
diff = 'diff',
rej = 'diff',
Dockerfile = 'dockerfile',

View File

@ -157,6 +157,7 @@ let s:filename_checks = {
\ 'denyhosts': ['denyhosts.conf'],
\ 'desc': ['file.desc'],
\ 'desktop': ['file.desktop', '.directory', 'file.directory'],
\ 'dhall': ['file.dhall'],
\ 'dictconf': ['dict.conf', '.dictrc'],
\ 'dictdconf': ['dictd.conf', 'dictdfile.conf', 'dictd-file.conf'],
\ 'diff': ['file.diff', 'file.rej'],