Skip to content

Releases: mccartnm/CppToolkitSublimeText

Hotfix For Constructor Empty Types

12 Aug 13:56
6fd4789
Compare
Choose a tag to compare
class Foo
{
    Foo();
};
// Became
 Foo::Foo() //...
^ // Bad

Implementing Foo(); was giving an extra space at the start of the line because it has an empty type.

Organization and Data Mining

12 Aug 12:39
ed8e16e
Compare
Choose a tag to compare
  • Significant improvement over old parsing methods
  • Scope setup for better context awareness
  • Additional details found in this PR

Minor Improvements

08 Aug 15:00
1841a5f
Compare
Choose a tag to compare

A few additional edge cases and some hardening of the code

  • final classes are now resolved more effectively
  • comments on the previous lines are resolved properly

Initial Release

13 Jun 17:00
Compare
Choose a tag to compare

This release comes with the three header-based functions.

  • Declare in Source
  • Declare in Header
  • Copy Declaration to Clipboard

With this release, there is also an auto-register factory for building new functionality without having to hand-roll the context menu. That said, the arguments supplied to each command will take different forms in the near future.