blob: 4e317009951bcc00202bd7e8b2ff46e8f08fd5cc [file] [log] [blame]
Bram Moolenaarc8cdf0f2021-03-13 13:28:13 +01001" Vim filetype plugin file
2" Language: GNU Poke
3" Maintainer: Doug Kearns <dougkearns@gmail.com>
Doug Kearns93197fd2024-01-14 20:59:02 +01004" Last Change: 2024 Jan 14
Bram Moolenaarc8cdf0f2021-03-13 13:28:13 +01005
6if exists("b:did_ftplugin")
7 finish
8endif
9let b:did_ftplugin = 1
10
11let s:cpo_save = &cpo
12set cpo&vim
13
14setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,://
15setlocal commentstring=//\ %s
16setlocal formatoptions-=t formatoptions+=croql
17
18setlocal include=load
19setlocal suffixesadd=.pk
20
Doug Kearns93197fd2024-01-14 20:59:02 +010021let b:undo_ftplugin = "setl fo< com< cms< inc< sua<"
Bram Moolenaarc8cdf0f2021-03-13 13:28:13 +010022
Doug Kearns93197fd2024-01-14 20:59:02 +010023if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
24 let b:browsefilter = "Poke Files (*.pk)\t*.pk\n"
25 if has("win32")
26 let b:browsefilter ..= "All Files (*.*)\t*\n"
27 else
28 let b:browsefilter ..= "All Files (*)\t*\n"
29 endif
30 let b:undo_ftplugin ..= " | unlet! b:browsefilter"
31endif
Bram Moolenaarc8cdf0f2021-03-13 13:28:13 +010032
33let &cpo = s:cpo_save
34unlet s:cpo_save
35
36" vim: nowrap sw=2 sts=2 ts=8