annotate runtime/ftplugin/cpp.vim @ 26486:8d598308f113 v8.2.3773

patch 8.2.3773: wrong window size when a modeline changes 'columns' Commit: https://github.com/vim/vim/commit/8a7374f8c4eb4c016270ad908a43af4ddedcbf56 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Dec 10 12:11:09 2021 +0000 patch 8.2.3773: wrong window size when a modeline changes 'columns' Problem: Wrong window size when a modeline changes 'columns' and there is more than one tabpage. (Michael Soyka) Solution: Adjust the frames of all tabpages. (closes #9315)
author Bram Moolenaar <Bram@vim.org>
date Fri, 10 Dec 2021 13:15:02 +0100
parents 3a1ed539ae2a
children 4027cefc2aab
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 " Vim filetype plugin file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 " Language: C++
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 " Maintainer: Bram Moolenaar <Bram@vim.org>
21499
3a1ed539ae2a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 7
diff changeset
4 " Last Change: 2020 Jul 26
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6 " Only do this when not done yet for this buffer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 if exists("b:did_ftplugin")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 finish
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10
21499
3a1ed539ae2a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 7
diff changeset
11 " Behaves mostly just like C
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 runtime! ftplugin/c.vim ftplugin/c_*.vim ftplugin/c/*.vim
21499
3a1ed539ae2a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 7
diff changeset
13
3a1ed539ae2a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 7
diff changeset
14 " C++ uses templates with <things>
3a1ed539ae2a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 7
diff changeset
15 " Disabled, because it gives an error for typing an unmatched ">".
3a1ed539ae2a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 7
diff changeset
16 " set matchpairs+=<:>
3a1ed539ae2a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 7
diff changeset
17 " let b:undo_ftplugin ..= ' | setl matchpairs<'