annotate runtime/ftplugin/yaml.vim @ 36187:af8a1a6a7276 draft default tip

runtime(doc): fix typo in :h dos-colors Commit: https://github.com/vim/vim/commit/ac8a10ab7672aa5fd359f76d34d8b0187728b92d Author: Christian Brabandt <cb@256bit.org> Date: Tue Sep 24 16:35:57 2024 +0200 runtime(doc): fix typo in :h dos-colors related: https://github.com/vim/vim/issues/15723 Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Tue, 24 Sep 2024 16:45:07 +0200
parents 9fdacba9c2ec
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: YAML (YAML Ain't Markup Language)
19646
847a300aa244 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 11062
diff changeset
3 " Previous Maintainer: Nikolai Weibull <now@bitwi.se> (inactive)
847a300aa244 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 11062
diff changeset
4 " Last Change: 2020 Mar 02
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< et< fo<"
375
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
15
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
16 setlocal comments=:# commentstring=#\ %s expandtab
389
4fe8e1a7758e updated for version 7.0102
vimboss
parents: 375
diff changeset
17 setlocal formatoptions-=t formatoptions+=croql
1698
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 839
diff changeset
18
34932
9fdacba9c2ec compiler(rime_deployer): include new compiler, use it for '*.custom.yaml' files (#14460)
Christian Brabandt <cb@256bit.org>
parents: 19646
diff changeset
19 " rime input method engine uses `*.custom.yaml` as its config files
9fdacba9c2ec compiler(rime_deployer): include new compiler, use it for '*.custom.yaml' files (#14460)
Christian Brabandt <cb@256bit.org>
parents: 19646
diff changeset
20 if expand('%:r:e') ==# 'custom'
9fdacba9c2ec compiler(rime_deployer): include new compiler, use it for '*.custom.yaml' files (#14460)
Christian Brabandt <cb@256bit.org>
parents: 19646
diff changeset
21 compiler rime_deployer
9fdacba9c2ec compiler(rime_deployer): include new compiler, use it for '*.custom.yaml' files (#14460)
Christian Brabandt <cb@256bit.org>
parents: 19646
diff changeset
22 setlocal include=__include:\\s*
9fdacba9c2ec compiler(rime_deployer): include new compiler, use it for '*.custom.yaml' files (#14460)
Christian Brabandt <cb@256bit.org>
parents: 19646
diff changeset
23 let b:undo_ftplugin ..= " inc<"
9fdacba9c2ec compiler(rime_deployer): include new compiler, use it for '*.custom.yaml' files (#14460)
Christian Brabandt <cb@256bit.org>
parents: 19646
diff changeset
24 endif
9fdacba9c2ec compiler(rime_deployer): include new compiler, use it for '*.custom.yaml' files (#14460)
Christian Brabandt <cb@256bit.org>
parents: 19646
diff changeset
25
19646
847a300aa244 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 11062
diff changeset
26 if !exists("g:yaml_recommended_style") || g:yaml_recommended_style != 0
847a300aa244 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 11062
diff changeset
27 let b:undo_ftplugin ..= " sw< sts<"
847a300aa244 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 11062
diff changeset
28 setlocal shiftwidth=2 softtabstop=2
847a300aa244 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 11062
diff changeset
29 endif
847a300aa244 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 11062
diff changeset
30
1698
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 839
diff changeset
31 let &cpo = s:cpo_save
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 839
diff changeset
32 unlet s:cpo_save