Mercurial > vim
annotate runtime/ftplugin/gpg.vim @ 33649:88cad94caef9
runtime(doc): Fix typos in several documents (#13420)
Commit: https://github.com/vim/vim/commit/5985879e3c36383155f84649fa42d06813a1893e
Author: h_east <h.east.727@gmail.com>
Date: Wed Oct 25 22:47:05 2023 +0900
runtime(doc): Fix typos in several documents (https://github.com/vim/vim/issues/13420)
* Fix typos in several documents
* Update runtime/doc/terminal.txt
Co-authored-by: K.Takata <kentkt@csc.jp>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Wed, 25 Oct 2023 16:00:07 +0200 |
parents | c252fbfde41d |
children | 89b487b08b2a |
rev | line source |
---|---|
375 | 1 " Vim filetype plugin file |
11062 | 2 " Language: gpg(1) configuration file |
3 " Previous Maintainer: Nikolai Weibull <now@bitwi.se> | |
33508
c252fbfde41d
runtime: make command name for &iskeywordprg more unique (#13297)
Christian Brabandt <cb@256bit.org>
parents:
33074
diff
changeset
|
4 " Latest Revision: 2023-10-07 |
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< fo<" |
375 | 15 |
389 | 16 setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql |
1698 | 17 |
32976
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
18 if has('unix') && executable('less') |
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
19 if !has('gui_running') |
33508
c252fbfde41d
runtime: make command name for &iskeywordprg more unique (#13297)
Christian Brabandt <cb@256bit.org>
parents:
33074
diff
changeset
|
20 command -buffer -nargs=1 GpgKeywordPrg |
32976
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
21 \ silent exe '!' . 'LESS= MANPAGER="less --pattern=''^\s+--' . <q-args> . '\b'' --hilite-search" man ' . 'gpg' | |
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
22 \ redraw! |
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
23 elseif has('terminal') |
33508
c252fbfde41d
runtime: make command name for &iskeywordprg more unique (#13297)
Christian Brabandt <cb@256bit.org>
parents:
33074
diff
changeset
|
24 command -buffer -nargs=1 GpgKeywordPrg |
32976
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
25 \ silent exe ':term ' . 'env LESS= MANPAGER="less --pattern=''' . escape('^\s+--' . <q-args> . '\b', '\') . ''' --hilite-search" man ' . 'gpg' |
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
26 endif |
33508
c252fbfde41d
runtime: make command name for &iskeywordprg more unique (#13297)
Christian Brabandt <cb@256bit.org>
parents:
33074
diff
changeset
|
27 if exists(':GpgKeywordPrg') == 2 |
32976
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
28 setlocal iskeyword+=- |
33508
c252fbfde41d
runtime: make command name for &iskeywordprg more unique (#13297)
Christian Brabandt <cb@256bit.org>
parents:
33074
diff
changeset
|
29 setlocal keywordprg=:GpgKeywordPrg |
c252fbfde41d
runtime: make command name for &iskeywordprg more unique (#13297)
Christian Brabandt <cb@256bit.org>
parents:
33074
diff
changeset
|
30 let b:undo_ftplugin .= '| setlocal keywordprg< iskeyword< | sil! delc -buffer GpgKeywordPrg' |
32976
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
31 endif |
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
32 endif |
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
33 |
1698 | 34 let &cpo = s:cpo_save |
35 unlet s:cpo_save | |
32976
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
36 |