vscode-cmantic icon indicating copy to clipboard operation
vscode-cmantic copied to clipboard

C/C++ code generation for VS Code: Generate Definitions, Getters, Setters, and much more.

Results 38 vscode-cmantic issues
Sort by recently updated
recently updated
newest added

Right now the getters and setters are generated with names like `foo` and `setFoo`, respectively. My workplace requires the "get" prefix, so it would be nice to be able to...

Type: Bug open c++ file Extension version: 0.9.0 VS Code version: Code 1.87.2 (863d2581ecda6849923a2118d93a088b0745d9d6, 2024-03-08T15:14:59.643Z) OS version: Linux x64 5.4.0-144-generic Modes: System Info |Item|Value| |---|---| |CPUs|Intel(R) Core(TM) i3-10110U CPU @...

Hi, Using with the default Microsoft C++ extension; I think cpptools is installed and working properly (1.19.9), I can see the process in top - but all I see in...

This PR aims at supporting copy constructor. It initializes : * direct base classes * each selected members

Fix bug leading multiple features to use a blank declaration This is an important fix, and not a superfluous feature expected limitations: - will bug out on `operator()` - will...

rng.hpp, in /include/ folder: ![1](https://user-images.githubusercontent.com/111327195/211442194-2d86100d-4287-4ba6-b24a-84322bf960f5.png) ![2](https://user-images.githubusercontent.com/111327195/211442210-1c76b69b-0710-4646-9c9e-fab1d8b6fa49.png) File generated in /src/ folder: ![3](https://user-images.githubusercontent.com/111327195/211442215-dbbcdf22-a451-4513-aec2-d5bd36a15f04.png) (This issue also occurs when choosing other definition-generating commands when the files are in different folders)

Hi there! I'm investigating using your plugin for improved productivity in C++ in a cloud environment - gitpod.io. However, gitpod only supports extensions that are uploaded to the openvsx registry...

Hi, first of all, thank you for your extension. I have two suggestions for new features : Given a class like that : ``` class Test { public: Test( void...

I found https://github.com/BigBahss/vscode-cmantic/issues/11, but it does not work for me. my code is like this: class WatchData { public: std::string GetSubscribeName() const { return SubscribeName; } void SetSubscribeName(const std::string &subscribeName)...