You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is one usecase that is missing, maybe a misconfiguration from me. The code I am working with has some long c++ classes with some private and public parts. I wish that the class name, and inheritance could be shown by context.vim.
Input:
class A
: public B
{
public:
// tons of public methods
private:
// tons of private methods too
void SomeMethod(); //<--put the cursor here
Actual:
private:
//------------------------------------------------- <context.vim>
void SomeMethod(); //<--put the cursor here
Expected:
class A
: public B
{
private:
//------------------------------------------------- <context.vim>
void SomeMethod(); //<--put the cursor here
Best,
The text was updated successfully, but these errors were encountered:
MartyLake
changed the title
support c++ public/private keyword
Feature request: support c++ public/private keyword
Oct 28, 2021
Hello,
Thanks for creating such a useful plugin !
There is one usecase that is missing, maybe a misconfiguration from me. The code I am working with has some long c++ classes with some
private
andpublic
parts. I wish that the class name, and inheritance could be shown bycontext.vim
.Input:
Actual:
Expected:
Best,
The text was updated successfully, but these errors were encountered: