1
0
forked from aniani/vim

patch 9.0.1668: PEM files are not recognized

Problem:    PEM files are not recognized.
Solution:   Add patterns to match PEM files. (closes #12582)
This commit is contained in:
ObserverOfTime
2023-06-26 22:05:37 +01:00
committed by Bram Moolenaar
parent e429893741
commit 0256d76a33
3 changed files with 6 additions and 0 deletions

View File

@@ -1511,6 +1511,9 @@ au BufNewFile,BufRead *.pdf setf pdf
" PCMK - HAE - crm configure edit
au BufNewFile,BufRead *.pcmk setf pcmk
" PEM (Privacy-Enhanced Mail)
au BufNewFile,BufRead *.pem,*.cer,*.crt,*.csr setf pem
" Perl
if has("fname_case")
au BufNewFile,BufRead *.pl,*.PL call dist#ft#FTpl()