diff options
author | Tom Praschan <13141438+tom-anders@users.noreply.github.com> | 2022-04-07 16:14:02 +0200 |
---|---|---|
committer | Tom Praschan <13141438+tom-anders@users.noreply.github.com> | 2022-04-09 15:39:46 +0200 |
commit | 45f62464d3e1f39e74fca627e27eea106ffe46ef (patch) | |
tree | 3ff4fdbd476d29c6427de9b3b02a63c0eb43b13a /src/nvim/buffer_defs.h | |
parent | 233014f92b5d4d5bf8a6f019241aafd1b05dd383 (diff) | |
download | rneovim-45f62464d3e1f39e74fca627e27eea106ffe46ef.tar.gz rneovim-45f62464d3e1f39e74fca627e27eea106ffe46ef.tar.bz2 rneovim-45f62464d3e1f39e74fca627e27eea106ffe46ef.zip |
vim-patch:8.2.4702: C++ scope labels are hard-coded
Problem: C++ scope labels are hard-coded.
Solution: Add 'cinscopedecls' to define the labels. (Tom Praschan,
closes vim/vim#10109)
https://github.com/vim/vim/commit/3506cf34c17c5eae6c2d1317db1fcd5a8493c288
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index 422741cc2f..2bb45e9fa0 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -696,6 +696,7 @@ struct file_buffer { char_u *b_p_cino; ///< 'cinoptions' char_u *b_p_cink; ///< 'cinkeys' char_u *b_p_cinw; ///< 'cinwords' + char_u *b_p_cinsd; ///< 'cinscopedecls' char_u *b_p_com; ///< 'comments' char_u *b_p_cms; ///< 'commentstring' char_u *b_p_cpt; ///< 'complete' |