From 9d3576246be4c0c85534fc1f730cf194296a9537 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Tue, 27 Apr 2021 22:54:00 -0400 Subject: vim-patch:8.2.2801: free Pascal makefile not recognized Problem: Free Pascal makefile not recognized. Solution: Add the fpcmake filetype. (Doug Kearns) https://github.com/vim/vim/commit/f6d9935a13a7b37272ad71761d3d86b7f40c3d5f --- runtime/filetype.vim | 3 +++ 1 file changed, 3 insertions(+) (limited to 'runtime') diff --git a/runtime/filetype.vim b/runtime/filetype.vim index a63ed3f709..0e74a30ee9 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1191,6 +1191,9 @@ au BufNewFile,BufRead *.pp call dist#ft#FTpp() " Delphi or Lazarus program file au BufNewFile,BufRead *.dpr,*.lpr setf pascal +" Free Pascal makefile definition file +au BufNewFile,BufRead *.fpc setf fpcmake + " PDF au BufNewFile,BufRead *.pdf setf pdf -- cgit