Skip to content

Commit

Permalink
patch 9.0.1417: ESDL files are not recognized
Browse files Browse the repository at this point in the history
Problem:    ESDL files are not recognized.
Solution:   Add a pattern for ESDL files. (Amaan Qureshi, closes #12174)
  • Loading branch information
amaanq authored and brammool committed Mar 19, 2023
1 parent e6d40dc commit a1fa8b3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions runtime/filetype.vim
Expand Up @@ -653,6 +653,9 @@ au BufNewFile,BufRead filter-rules setf elmfilt
" Elsa - https://github.com/ucsd-progsys/elsa
au BufNewFile,BufRead *.lc setf elsa

" EdgeDB Schema Definition Language
au BufNewFile,BufRead *.esdl setf esdl

" ESMTP rc file
au BufNewFile,BufRead *esmtprc setf esmtprc

Expand Down
1 change: 1 addition & 0 deletions src/testdir/test_filetype.vim
Expand Up @@ -190,6 +190,7 @@ let s:filename_checks = {
\ 'epuppet': ['file.epp'],
\ 'erlang': ['file.erl', 'file.hrl', 'file.yaws'],
\ 'eruby': ['file.erb', 'file.rhtml'],
\ 'esdl': ['file.esdl'],
\ 'esmtprc': ['anyesmtprc', 'esmtprc', 'some-esmtprc'],
\ 'esqlc': ['file.ec', 'file.EC'],
\ 'esterel': ['file.strl'],
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -695,6 +695,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1417,
/**/
1416,
/**/
Expand Down

0 comments on commit a1fa8b3

Please sign in to comment.