1
0
forked from aniani/vim

patch 9.1.0603: filetype: use correct extension for Dracula

Problem:  pattern detection for Dracula language uses "*lvs" and "*lpe".
          as there is no dot, those are not treated as extensions which
          they should (judging by 'runtime/syntax/dracula.vim' and
          common sense).
Solution: use "*.lvs" and "*.lpe" patterns (Evgeni Chasnovski)

closes: #15303

Signed-off-by: Evgeni Chasnovski <evgeni.chasnovski@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Evgeni Chasnovski
2024-07-19 15:59:29 +02:00
committed by Christian Brabandt
parent 37853b7de3
commit 5fb801a74f
3 changed files with 4 additions and 2 deletions

View File

@@ -713,7 +713,7 @@ if has("fname_case")
endif
" Dracula
au BufNewFile,BufRead *.drac,*.drc,*lvs,*lpe setf dracula
au BufNewFile,BufRead *.drac,*.drc,*.lvs,*.lpe setf dracula
" Datascript
au BufNewFile,BufRead *.ds setf datascript