vim-patch:9.0.0942: Workflow Description Language files are not recognized (#21183)

Problem:    Workflow Description Language files are not recognized.
Solution:   Add a pattern for the "wdl" filetype. (Matt Dunford,
            closes vim/vim#11611)

f60bdc3417

Co-authored-by: Matt Dunford <zenmatic@gmail.com>
This commit is contained in:
Christian Clason 2022-11-25 09:17:08 +01:00 committed by GitHub
parent 2738f842f6
commit 5ca1f48b40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -1071,6 +1071,7 @@ local extension = {
vue = 'vue',
wat = 'wast',
wast = 'wast',
wdl = 'wdl',
wm = 'webmacro',
wbt = 'winbatch',
wml = 'wml',

View File

@ -623,6 +623,7 @@ let s:filename_checks = {
\ 'vroom': ['file.vroom'],
\ 'vue': ['file.vue'],
\ 'wast': ['file.wast', 'file.wat'],
\ 'wdl': ['file.wdl'],
\ 'webmacro': ['file.wm'],
\ 'wget': ['.wgetrc', 'wgetrc'],
\ 'wget2': ['.wget2rc', 'wget2rc'],