Mercurial > vim
annotate runtime/ftplugin/modconf.vim @ 33219:ebb36e3d5299
merge heads
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 09 Sep 2023 10:23:28 +0200 |
parents | 5510af40c77b |
children | c252fbfde41d |
rev | line source |
---|---|
375 | 1 " Vim filetype plugin file |
11062 | 2 " Language: modules.conf(5) configuration file |
3 " Previous Maintainer: Nikolai Weibull <now@bitwi.se> | |
4 " Latest Revision: 2008-07-09 | |
375 | 5 |
6 if exists("b:did_ftplugin") | |
7 finish | |
8 endif | |
9 let b:did_ftplugin = 1 | |
10 | |
1698 | 11 let s:cpo_save = &cpo |
12 set cpo&vim | |
13 | |
389 | 14 let b:undo_ftplugin = "setl com< cms< inc< fo<" |
375 | 15 |
16 setlocal comments=:# commentstring=#\ %s include=^\\s*include | |
389 | 17 setlocal formatoptions-=t formatoptions+=croql |
1698 | 18 |
32984 | 19 if has('unix') && executable('less') |
20 if !has('gui_running') | |
21 command -buffer -nargs=1 Sman | |
22 \ silent exe '!' . 'LESS= MANPAGER="less --pattern=''^\s{,8}' . <q-args> . '\b'' --hilite-search" man ' . 'modprobe.d' | | |
23 \ redraw! | |
24 elseif has('terminal') | |
25 command -buffer -nargs=1 Sman | |
26 \ silent exe ':term ' . 'env LESS= MANPAGER="less --pattern=''' . escape('^\s{,8}' . <q-args> . '\b', '\') . ''' --hilite-search" man ' . 'modprobe.d' | |
27 endif | |
28 if exists(':Sman') == 2 | |
29 setlocal iskeyword+=- | |
30 setlocal keywordprg=:Sman | |
33074
5510af40c77b
runtime: cleanup :Sman command via the undo_ftplugin mechanism (#12967)
Christian Brabandt <cb@256bit.org>
parents:
32984
diff
changeset
|
31 let b:undo_ftplugin .= '| setlocal keywordprg< iskeyword< | sil! delc -buffer Sman' |
32984 | 32 endif |
33 endif | |
34 | |
1698 | 35 let &cpo = s:cpo_save |
36 unlet s:cpo_save |