mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 03:18:16 +00: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:
@@ -1071,6 +1071,7 @@ local extension = {
|
|||||||
vue = 'vue',
|
vue = 'vue',
|
||||||
wat = 'wast',
|
wat = 'wast',
|
||||||
wast = 'wast',
|
wast = 'wast',
|
||||||
|
wdl = 'wdl',
|
||||||
wm = 'webmacro',
|
wm = 'webmacro',
|
||||||
wbt = 'winbatch',
|
wbt = 'winbatch',
|
||||||
wml = 'wml',
|
wml = 'wml',
|
||||||
|
@@ -623,6 +623,7 @@ let s:filename_checks = {
|
|||||||
\ 'vroom': ['file.vroom'],
|
\ 'vroom': ['file.vroom'],
|
||||||
\ 'vue': ['file.vue'],
|
\ 'vue': ['file.vue'],
|
||||||
\ 'wast': ['file.wast', 'file.wat'],
|
\ 'wast': ['file.wast', 'file.wat'],
|
||||||
|
\ 'wdl': ['file.wdl'],
|
||||||
\ 'webmacro': ['file.wm'],
|
\ 'webmacro': ['file.wm'],
|
||||||
\ 'wget': ['.wgetrc', 'wgetrc'],
|
\ 'wget': ['.wgetrc', 'wgetrc'],
|
||||||
\ 'wget2': ['.wget2rc', 'wget2rc'],
|
\ 'wget2': ['.wget2rc', 'wget2rc'],
|
||||||
|
Reference in New Issue
Block a user