diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-27 22:54:00 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-27 22:54:38 -0400 |
commit | 9d3576246be4c0c85534fc1f730cf194296a9537 (patch) | |
tree | 2d3967e343f77ef1fd8a7a754209d68c3e474812 /runtime | |
parent | e612a0a76a5c990220113e76ec6a07fe49c28618 (diff) | |
download | rneovim-9d3576246be4c0c85534fc1f730cf194296a9537.tar.gz rneovim-9d3576246be4c0c85534fc1f730cf194296a9537.tar.bz2 rneovim-9d3576246be4c0c85534fc1f730cf194296a9537.zip |
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
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/filetype.vim | 3 |
1 files changed, 3 insertions, 0 deletions
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 |