diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-01-01 14:00:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-01 14:00:33 +0100 |
commit | b0f21adef031fd3702d059a0489522c0d9c1c577 (patch) | |
tree | 37f0a7884dd83a979f012edfb05d2ce9995e2649 /runtime | |
parent | 36a8f31a37a7e9f30043f86c6cf99263c807f0ab (diff) | |
download | rneovim-b0f21adef031fd3702d059a0489522c0d9c1c577.tar.gz rneovim-b0f21adef031fd3702d059a0489522c0d9c1c577.tar.bz2 rneovim-b0f21adef031fd3702d059a0489522c0d9c1c577.zip |
vim-patch:8.2.3964: some common lisp and scheme files not recognized (#16866)
Problem: Some common lisp and scheme files not recognized.
Solution: Recognize *.asd as lisp and *.sld as scheme. (Alex Vear,
closes vim/vim#9447)
https://github.com/vim/vim/commit/654b729c4c9951f2a46c161d1e9fefdc223fc94e
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/filetype.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 104836862f..1f9b90ed78 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -959,9 +959,9 @@ au BufNewFile,BufRead lilo.conf setf lilo " Lisp (*.el = ELisp, *.cl = Common Lisp) " *.jl was removed, it's also used for Julia, better skip than guess wrong. if has("fname_case") - au BufNewFile,BufRead *.lsp,*.lisp,*.el,*.cl,*.L,.emacs,.sawfishrc setf lisp + au BufNewFile,BufRead *.lsp,*.lisp,*.asd,*.el,*.cl,*.L,.emacs,.sawfishrc setf lisp else - au BufNewFile,BufRead *.lsp,*.lisp,*.el,*.cl,.emacs,.sawfishrc setf lisp + au BufNewFile,BufRead *.lsp,*.lisp,*.asd,*.el,*.cl,.emacs,.sawfishrc setf lisp endif " SBCL implementation of Common Lisp @@ -1665,7 +1665,7 @@ au BufNewFile,BufRead .zshrc,.zshenv,.zlogin,.zlogout,.zcompdump setf zsh au BufNewFile,BufRead *.zsh setf zsh " Scheme -au BufNewFile,BufRead *.scm,*.ss,*.rkt,*.rktd,*.rktl setf scheme +au BufNewFile,BufRead *.scm,*.ss,*.sld,*.rkt,*.rktd,*.rktl setf scheme " Screen RC au BufNewFile,BufRead .screenrc,screenrc setf screen |