annotate runtime/ftplugin/fpcmake.vim @ 34983:31cc88e55e4c v9.1.0347

patch 9.1.0347: A few typos in test_xdg when testing gvimrc Commit: https://github.com/vim/vim/commit/133ed2a592e4d7998a8f6afa3de9f057feb23f0a Author: Diego Viola <diego.viola@gmail.com> Date: Thu Apr 18 20:54:06 2024 +0200 patch 9.1.0347: A few typos in test_xdg when testing gvimrc Problem: A few typos in test_xdg when testing gvimrc Solution: Fix them (Diego Viola) closes: #14584 Signed-off-by: Diego Viola <diego.viola@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Thu, 18 Apr 2024 21:00:07 +0200
parents 8ae680be2a51
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
24569
e3ec2ec8841a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Vim filetype plugin file
e3ec2ec8841a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " Language: Free Pascal Makefile Generator
e3ec2ec8841a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 " Maintainer: Doug Kearns <dougkearns@gmail.com>
34134
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 24569
diff changeset
4 " Last Change: 2024 Jan 14
24569
e3ec2ec8841a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5
e3ec2ec8841a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 if exists("b:did_ftplugin")
e3ec2ec8841a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 finish
e3ec2ec8841a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 endif
e3ec2ec8841a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9
e3ec2ec8841a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 let s:cpo_save = &cpo
e3ec2ec8841a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 set cpo&vim
e3ec2ec8841a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12
e3ec2ec8841a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 runtime! ftplugin/make.vim
e3ec2ec8841a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14
e3ec2ec8841a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15 if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
34134
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 24569
diff changeset
16 let b:browsefilter = "Free Pascal Makefile Definition Files (*.fpc)\t*.fpc\n"
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 24569
diff changeset
17 if has("win32")
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 24569
diff changeset
18 let b:browsefilter ..= "All Files (*.*)\t*\n"
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 24569
diff changeset
19 else
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 24569
diff changeset
20 let b:browsefilter ..= "All Files (*)\t*\n"
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 24569
diff changeset
21 endif
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 24569
diff changeset
22 let b:undo_ftplugin ..= " | unlet! b:browsefilter"
24569
e3ec2ec8841a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
23 endif
e3ec2ec8841a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
24
e3ec2ec8841a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
25
e3ec2ec8841a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
26 let &cpo = s:cpo_save
e3ec2ec8841a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
27 unlet s:cpo_save
e3ec2ec8841a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
28
e3ec2ec8841a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
29 " vim: nowrap sw=2 sts=2 ts=8 noet: