view runtime/ftplugin/fpcmake.vim @ 25135:5731bcaaabcb v8.2.3104

patch 8.2.3104: Vim9: unspecified function type causes type error Commit: https://github.com/vim/vim/commit/b7480cd8931fa1696265f75c7d4d9fdf0be69e12 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 4 18:28:15 2021 +0200 patch 8.2.3104: Vim9: unspecified function type causes type error Problem: Vim9: unspecified function type causes type error. Solution: Don't check type when min_argcount is negative. (issue https://github.com/vim/vim/issues/8492)
author Bram Moolenaar <Bram@vim.org>
date Sun, 04 Jul 2021 18:30:03 +0200
parents e3ec2ec8841a
children 8ae680be2a51
line wrap: on
line source

" Vim filetype plugin file
" Language:	Free Pascal Makefile Generator
" Maintainer:	Doug Kearns <dougkearns@gmail.com>
" Last Change:	2021 Apr 23

if exists("b:did_ftplugin")
  finish
endif

let s:cpo_save = &cpo
set cpo&vim

runtime! ftplugin/make.vim

if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
  let b:browsefilter = "Free Pascal Makefile Definition Files (*.fpc)\t*.fpc\n" ..
		     \ "All Files (*.*)\t*.*\n"
endif

let b:undo_ftplugin = b:undo_ftplugin .. " | unlet! b:browsefilter"

let &cpo = s:cpo_save
unlet s:cpo_save

" vim: nowrap sw=2 sts=2 ts=8 noet: