diff 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
line wrap: on
line diff
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -600,7 +600,7 @@ au BufNewFile,BufRead *.fan,*.fwt		setf 
 au BufNewFile,BufRead *.factor			setf factor
 
 " Fennel
-autocmd BufRead,BufNewFile *.fnl 		setf fennel
+autocmd BufRead,BufNewFile *.fnl		setf fennel
 
 " Fetchmail RC file
 au BufNewFile,BufRead .fetchmailrc		setf fetchmail
@@ -644,7 +644,7 @@ au BufNewFile,BufRead *.mo,*.gdmo		setf 
 au BufNewFile,BufRead *.ged,lltxxxxx.txt	setf gedcom
 
 " Gift (Moodle)
-autocmd BufRead,BufNewFile *.gift 		setf gift
+autocmd BufRead,BufNewFile *.gift		setf gift
 
 " Git
 au BufNewFile,BufRead COMMIT_EDITMSG,MERGE_MSG,TAG_EDITMSG	setf gitcommit
@@ -715,7 +715,7 @@ au BufNewFile,BufRead .gtkrc,gtkrc		setf
 au BufNewFile,BufRead *.haml			setf haml
 
 " Hamster Classic | Playground files
-au BufNewFile,BufRead *.hsm	  		setf hamster
+au BufNewFile,BufRead *.hsm			setf hamster
 
 " Haskell
 au BufNewFile,BufRead *.hs,*.hsc,*.hs-boot	setf haskell
@@ -1342,12 +1342,15 @@ au BufNewFile,BufRead *.pdb			setf prolo
 " Promela
 au BufNewFile,BufRead *.pml			setf promela
 
+" Property Specification Language (PSL)
+au BufNewFile,BufRead *.psl			setf psl
+
 " Google protocol buffers
 au BufNewFile,BufRead *.proto			setf proto
 au BufNewFile,BufRead *.pbtxt			setf pbtxt
 
 " Poke
-au BufNewFile,BufRead *.pk      		setf poke
+au BufNewFile,BufRead *.pk			setf poke
 
 " Protocols
 au BufNewFile,BufRead */etc/protocols		setf protocols