mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -07:00
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:
parent
2738f842f6
commit
5ca1f48b40
@ -1071,6 +1071,7 @@ local extension = {
|
||||
vue = 'vue',
|
||||
wat = 'wast',
|
||||
wast = 'wast',
|
||||
wdl = 'wdl',
|
||||
wm = 'webmacro',
|
||||
wbt = 'winbatch',
|
||||
wml = 'wml',
|
||||
|
@ -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'],
|
||||
|
Loading…
Reference in New Issue
Block a user