annotate runtime/ftplugin/gpg.vim @ 33953:ab75ab5a9eb5 v9.0.2171

patch 9.0.2171: The options[] array is still not sorted alphabetically Commit: https://github.com/vim/vim/commit/ffba4e952b25c9257a7b0bd860b85fca2c1e65f4 Author: zeertzjq <zeertzjq@outlook.com> Date: Sat Dec 16 14:14:36 2023 +0100 patch 9.0.2171: The options[] array is still not sorted alphabetically Problem: The options[] array is still not sorted alphabetically (after: v9.0.2154), causing test failures Solution: Sort the remaining items This causes an failure for the vim/vim-win32-installer builds, so make sure it is completely sorted. closes: #13690 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sat, 16 Dec 2023 14:30:04 +0100
parents c252fbfde41d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
375
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
1 " Vim filetype plugin file
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents: 1698
diff changeset
2 " Language: gpg(1) configuration file
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents: 1698
diff changeset
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
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
5
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
6 if exists("b:did_ftplugin")
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
7 finish
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
8 endif
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
9 let b:did_ftplugin = 1
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
10
1698
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 839
diff changeset
11 let s:cpo_save = &cpo
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 839
diff changeset
12 set cpo&vim
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 839
diff changeset
13
389
4fe8e1a7758e updated for version 7.0102
vimboss
parents: 375
diff changeset
14 let b:undo_ftplugin = "setl com< cms< fo<"
375
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
15
389
4fe8e1a7758e updated for version 7.0102
vimboss
parents: 375
diff changeset
16 setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql
1698
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 839
diff changeset
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
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 839
diff changeset
34 let &cpo = s:cpo_save
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 839
diff changeset
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