comparison runtime/filetype.vim @ 24466:f5a6a6e98ec4 v8.2.2773

patch 8.2.2773: PSL filetype not recognized Commit: https://github.com/vim/vim/commit/112a006417a0d4700ff39ddba3bb5e985ae9770f Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 17 14:06:39 2021 +0200 patch 8.2.2773: PSL filetype not recognized Problem: PSL filetype not recognized. Solution: Add a filetype pattern. (Daniel Kho, closes https://github.com/vim/vim/issues/8117)
author Bram Moolenaar <Bram@vim.org>
date Sat, 17 Apr 2021 14:15:04 +0200
parents 1d126cb683c1
children 9f41bfdbc6fc
comparison
equal deleted inserted replaced
24465:10508ba73a4b 24466:f5a6a6e98ec4
598 598
599 " Factor 599 " Factor
600 au BufNewFile,BufRead *.factor setf factor 600 au BufNewFile,BufRead *.factor setf factor
601 601
602 " Fennel 602 " Fennel
603 autocmd BufRead,BufNewFile *.fnl setf fennel 603 autocmd BufRead,BufNewFile *.fnl setf fennel
604 604
605 " Fetchmail RC file 605 " Fetchmail RC file
606 au BufNewFile,BufRead .fetchmailrc setf fetchmail 606 au BufNewFile,BufRead .fetchmailrc setf fetchmail
607 607
608 " FlexWiki - disabled, because it has side effects when a .wiki file 608 " FlexWiki - disabled, because it has side effects when a .wiki file
642 642
643 " Gedcom 643 " Gedcom
644 au BufNewFile,BufRead *.ged,lltxxxxx.txt setf gedcom 644 au BufNewFile,BufRead *.ged,lltxxxxx.txt setf gedcom
645 645
646 " Gift (Moodle) 646 " Gift (Moodle)
647 autocmd BufRead,BufNewFile *.gift setf gift 647 autocmd BufRead,BufNewFile *.gift setf gift
648 648
649 " Git 649 " Git
650 au BufNewFile,BufRead COMMIT_EDITMSG,MERGE_MSG,TAG_EDITMSG setf gitcommit 650 au BufNewFile,BufRead COMMIT_EDITMSG,MERGE_MSG,TAG_EDITMSG setf gitcommit
651 au BufNewFile,BufRead *.git/config,.gitconfig,/etc/gitconfig setf gitconfig 651 au BufNewFile,BufRead *.git/config,.gitconfig,/etc/gitconfig setf gitconfig
652 au BufNewFile,BufRead */.config/git/config setf gitconfig 652 au BufNewFile,BufRead */.config/git/config setf gitconfig
713 713
714 " Haml 714 " Haml
715 au BufNewFile,BufRead *.haml setf haml 715 au BufNewFile,BufRead *.haml setf haml
716 716
717 " Hamster Classic | Playground files 717 " Hamster Classic | Playground files
718 au BufNewFile,BufRead *.hsm setf hamster 718 au BufNewFile,BufRead *.hsm setf hamster
719 719
720 " Haskell 720 " Haskell
721 au BufNewFile,BufRead *.hs,*.hsc,*.hs-boot setf haskell 721 au BufNewFile,BufRead *.hs,*.hsc,*.hs-boot setf haskell
722 au BufNewFile,BufRead *.lhs setf lhaskell 722 au BufNewFile,BufRead *.lhs setf lhaskell
723 au BufNewFile,BufRead *.chs setf chaskell 723 au BufNewFile,BufRead *.chs setf chaskell
1340 au BufNewFile,BufRead *.pdb setf prolog 1340 au BufNewFile,BufRead *.pdb setf prolog
1341 1341
1342 " Promela 1342 " Promela
1343 au BufNewFile,BufRead *.pml setf promela 1343 au BufNewFile,BufRead *.pml setf promela
1344 1344
1345 " Property Specification Language (PSL)
1346 au BufNewFile,BufRead *.psl setf psl
1347
1345 " Google protocol buffers 1348 " Google protocol buffers
1346 au BufNewFile,BufRead *.proto setf proto 1349 au BufNewFile,BufRead *.proto setf proto
1347 au BufNewFile,BufRead *.pbtxt setf pbtxt 1350 au BufNewFile,BufRead *.pbtxt setf pbtxt
1348 1351
1349 " Poke 1352 " Poke
1350 au BufNewFile,BufRead *.pk setf poke 1353 au BufNewFile,BufRead *.pk setf poke
1351 1354
1352 " Protocols 1355 " Protocols
1353 au BufNewFile,BufRead */etc/protocols setf protocols 1356 au BufNewFile,BufRead */etc/protocols setf protocols
1354 1357
1355 " Pyrex 1358 " Pyrex