annotate runtime/ftplugin/poke.vim @ 35443:469c6fb5cb2d default tip

runtime(doc): revert unintended formatting changes for termdebug Commit: https://github.com/vim/vim/commit/c52a8560792b47a19fd0686377f588ef25e5a7d4 Author: Christian Brabandt <cb@256bit.org> Date: Mon Jun 17 05:29:37 2024 +0200 runtime(doc): revert unintended formatting changes for termdebug fixes: https://github.com/vim/vim/issues/15028 Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Mon, 17 Jun 2024 05:45:05 +0200
parents 8ae680be2a51
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
24103
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Vim filetype plugin file
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " Language: GNU Poke
788e10cec9bd 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: 24103
diff changeset
4 " Last Change: 2024 Jan 14
24103
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 if exists("b:did_ftplugin")
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 finish
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 endif
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 let b:did_ftplugin = 1
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 let s:cpo_save = &cpo
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 set cpo&vim
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14 setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,://
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15 setlocal commentstring=//\ %s
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16 setlocal formatoptions-=t formatoptions+=croql
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
18 setlocal include=load
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19 setlocal suffixesadd=.pk
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
20
34134
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 24103
diff changeset
21 let b:undo_ftplugin = "setl fo< com< cms< inc< sua<"
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 24103
diff changeset
22
24103
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
23 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: 24103
diff changeset
24 let b:browsefilter = "Poke Files (*.pk)\t*.pk\n"
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 24103
diff changeset
25 if has("win32")
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 24103
diff changeset
26 let b:browsefilter ..= "All Files (*.*)\t*\n"
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 24103
diff changeset
27 else
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 24103
diff changeset
28 let b:browsefilter ..= "All Files (*)\t*\n"
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 24103
diff changeset
29 endif
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 24103
diff changeset
30 let b:undo_ftplugin ..= " | unlet! b:browsefilter"
24103
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
31 endif
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
32
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
33 let &cpo = s:cpo_save
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
34 unlet s:cpo_save
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
35
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
36 " vim: nowrap sw=2 sts=2 ts=8