annotate runtime/ftplugin/cpp.vim @ 23466:15fa3923cc49

Update runtime files. Commit: https://github.com/vim/vim/commit/7e6a515ed14e204fafb3dd6e98f2fb543e64aedd Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 2 16:39:53 2021 +0100 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Sat, 02 Jan 2021 16:45:04 +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<'