diff options
| author | ObserverOfTime <chronobserver@disroot.org> | 2023-06-27 10:14:34 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-27 09:14:34 +0200 |
| commit | 8ea9a70d05d6a7f9bab410101a87e6b184f14634 (patch) | |
| tree | a9d35cb35336d630ee2ddabe7aa959f337ed92e8 /runtime/lua/vim | |
| parent | 2e055e49a3ae27db641986650aa9e7b2b962cf63 (diff) | |
| download | rneovim-8ea9a70d05d6a7f9bab410101a87e6b184f14634.tar.gz rneovim-8ea9a70d05d6a7f9bab410101a87e6b184f14634.tar.bz2 rneovim-8ea9a70d05d6a7f9bab410101a87e6b184f14634.zip | |
vim-patch:9.0.1668: PEM files are not recognized (#24169)
Problem: PEM files are not recognized.
Solution: Add patterns to match PEM files. (closes vim/vim#12582)
https://github.com/vim/vim/commit/0256d76a3392aef270b38d1cf7633008e45c2003
Diffstat (limited to 'runtime/lua/vim')
| -rw-r--r-- | runtime/lua/vim/filetype.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index fc94091622..bc880ed130 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -783,6 +783,10 @@ local extension = { g = 'pccts', pcmk = 'pcmk', pdf = 'pdf', + pem = 'pem', + cer = 'pem', + crt = 'pem', + csr = 'pem', plx = 'perl', prisma = 'prisma', psgi = 'perl', |