blob: 81b0011bc53fbde2a788bcdbeec2f118fad0bea8 [file] [log] [blame]
Bram Moolenaar8c1b8cb2022-06-14 17:41:28 +01001" Vim filetype plugin file
2" Language: Perl POD format
3" Maintainer: vim-perl <vim-perl@googlegroups.com>
4" Author: Doug Kearns <dougkearns@gmail.com>
5" Homepage: https://github.com/vim-perl/vim-perl
6" Bugs/requests: https://github.com/vim-perl/vim-perl/issues
7" License: Vim License (see :help license)
dkearns4e554d22023-09-09 03:16:03 +10008" Last Change: 2023 Jul 05
Doug Kearns93197fd2024-01-14 20:59:02 +01009" Last Change: 2021 Oct 19
10" 2024 Jan 14 by Vim Project (browsefilter)
Bram Moolenaar8c1b8cb2022-06-14 17:41:28 +010011
12if exists("b:did_ftplugin")
dkearns4e554d22023-09-09 03:16:03 +100013 finish
Bram Moolenaar8c1b8cb2022-06-14 17:41:28 +010014endif
dkearns4e554d22023-09-09 03:16:03 +100015let b:did_ftplugin = 1
Bram Moolenaar8c1b8cb2022-06-14 17:41:28 +010016
17let s:save_cpo = &cpo
18set cpo-=C
19
20setlocal comments=fb:=for\ comment
21setlocal commentstring==for\ comment\ %s
22
23let b:undo_ftplugin = "setl com< cms<"
24
25if exists("loaded_matchit") && !exists("b:match_words")
26 let b:match_words =
27 \ '^=pod\>:^=cut\>,' .
28 \ '^=begin\s\+\(\S\+\):^=end\s\+\1,' .
29 \ '^=over\>:^=item\>:^=back\>,' .
30 \ '[IBCLEFSXZ]<<\%(\s\+\|$\)\@=:\%(\s\+\|^\)\@<=>>,' .
31 \ '[IBCLEFSXZ]<:>'
32 let b:undo_ftplugin .= " | unlet! b:match_words"
33endif
34
35if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
36 let b:browsefilter = "POD Source Files (*.pod)\t*.pod\n" .
37 \ "Perl Source Files (*.pl)\t*.pl\n" .
Doug Kearns93197fd2024-01-14 20:59:02 +010038 \ "Perl Modules (*.pm)\t*.pm\n"
39 if has("win32")
40 let b:browsefilter .= "All Files (*.*)\t*\n"
41 else
42 let b:browsefilter .= "All Files (*)\t*\n"
43 endif
Bram Moolenaar8c1b8cb2022-06-14 17:41:28 +010044 let b:undo_ftplugin .= " | unlet! b:browsefilter"
45endif
46
dkearns4e554d22023-09-09 03:16:03 +100047function s:jumpToSection(direction)
48 let flags = a:direction == "backward" ? "bsWz" : "sWz"
49 if has("syntax_items")
Bram Moolenaar8c1b8cb2022-06-14 17:41:28 +010050 let skip = "synIDattr(synID(line('.'), col('.'), 1), 'name') !~# '\\<podCommand\\>'"
51 else
dkearns4e554d22023-09-09 03:16:03 +100052 let skip = ""
Bram Moolenaar8c1b8cb2022-06-14 17:41:28 +010053 endif
54 for i in range(v:count1)
55 call search('^=\a', flags, 0, 0, skip)
56 endfor
57endfunction
58
59if !exists("no_plugin_maps") && !exists("no_pod_maps")
dkearns4e554d22023-09-09 03:16:03 +100060 for s:mode in ["n", "o", "x"]
61 for s:lhs in ["]]", "]["]
62 execute s:mode . "noremap <silent> <buffer> " . s:lhs . " <Cmd>call <SID>jumpToSection('forward')<CR>"
63 let b:undo_ftplugin .= " | silent! execute '" . s:mode . "unmap <buffer> " . s:lhs . "'"
64 endfor
65 for s:lhs in ["[[", "[]"]
66 execute s:mode . "noremap <silent> <buffer> " . s:lhs . " <Cmd>call <SID>jumpToSection('backward')<CR>"
67 let b:undo_ftplugin .= " | silent! execute '" . s:mode . "unmap <buffer> " . s:lhs . "'"
68 endfor
69 endfor
70 unlet s:mode s:lhs
Bram Moolenaar8c1b8cb2022-06-14 17:41:28 +010071endif
72
73let &cpo = s:save_cpo
74unlet s:save_cpo
75
76" vim: set expandtab: