nvim-treesitter-cpp-tools icon indicating copy to clipboard operation
nvim-treesitter-cpp-tools copied to clipboard

Rule of 3(5) does not work when a inline definition exists

Open Badhi opened this issue 2 years ago • 0 comments

Consider the following example

class A {
    ~A()
    {
    }
}

When the class is selected and TSCppRuleOf3 is entered, it is expected to add the Copy and assignment constructor declarations. But it does not

Badhi avatar Jul 07 '22 04:07 Badhi