annotate runtime/ftplugin/kconfig.vim @ 16135:dc0801e374e0 v8.1.1072

patch 8.1.1072: extending sign and foldcolumn below the text is confusing commit https://github.com/vim/vim/commit/8ee4c01b8c79a29065c1af05e5d9c0721069765f Author: Bram Moolenaar <Bram@vim.org> Date: Fri Mar 29 18:08:18 2019 +0100 patch 8.1.1072: extending sign and foldcolumn below the text is confusing Problem: Extending sign and foldcolumn below the text is confusing. Solution: Let the sign and foldcolumn stop at the last text line, just like the line number column. Also stop the command line window leader. (Christian Brabandt, closes #3964)
author Bram Moolenaar <Bram@vim.org>
date Fri, 29 Mar 2019 18:15:05 +0100
parents 0303182665d5
children 1ddd65fbc10c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents:
diff changeset
1 " Vim filetype plugin file
6823
0303182665d5 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 1698
diff changeset
2 " Vim syntax file
0303182665d5 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 1698
diff changeset
3 " Maintainer: Christian Brabandt <cb@256bit.org>
0303182665d5 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 1698
diff changeset
4 " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
0303182665d5 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 1698
diff changeset
5 " Latest Revision: 2015-05-29
0303182665d5 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 1698
diff changeset
6 " License: Vim (see :h license)
0303182665d5 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 1698
diff changeset
7 " Repository: https://github.com/chrisbra/vim-kconfig
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents:
diff changeset
8
1cdd2661f34c updated for version 7.0d01
vimboss
parents:
diff changeset
9 if exists("b:did_ftplugin")
1cdd2661f34c updated for version 7.0d01
vimboss
parents:
diff changeset
10 finish
1cdd2661f34c updated for version 7.0d01
vimboss
parents:
diff changeset
11 endif
1cdd2661f34c updated for version 7.0d01
vimboss
parents:
diff changeset
12 let b:did_ftplugin = 1
1cdd2661f34c updated for version 7.0d01
vimboss
parents:
diff changeset
13
1698
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 837
diff changeset
14 let s:cpo_save = &cpo
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 837
diff changeset
15 set cpo&vim
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 837
diff changeset
16
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents:
diff changeset
17 let b:undo_ftplugin = "setl com< cms< fo<"
1cdd2661f34c updated for version 7.0d01
vimboss
parents:
diff changeset
18
1cdd2661f34c updated for version 7.0d01
vimboss
parents:
diff changeset
19 setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql
1698
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 837
diff changeset
20
6823
0303182665d5 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 1698
diff changeset
21 " For matchit.vim
0303182665d5 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 1698
diff changeset
22 if exists("loaded_matchit")
0303182665d5 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 1698
diff changeset
23 let b:match_words = '^\<menu\>:\<endmenu\>,^\<if\>:\<endif\>,^\<choice\>:\<endchoice\>'
0303182665d5 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 1698
diff changeset
24 endif
0303182665d5 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 1698
diff changeset
25
1698
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 837
diff changeset
26 let &cpo = s:cpo_save
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 837
diff changeset
27 unlet s:cpo_save