codecadwallader / codemaid

CodeMaid is an open source Visual Studio extension to cleanup and simplify our C#, C++, F#, VB, PHP, PowerShell, JSON, XAML, XML, ASP, HTML, CSS, LESS, SCSS, JavaScript and TypeScript coding.
http://www.codemaid.net
GNU Lesser General Public License v3.0
1.88k stars 353 forks source link

codemaid spade hierarchy optimization #1000

Open AOQNRMGYXLMV opened 1 year ago

AOQNRMGYXLMV commented 1 year ago

Environment

Description

Could you group class methods by class name like visual assist?

Steps to recreate

For example, there are two classes: VulkanExample and it's helper class VulkanglTFModel The implementation of these two classes methods is in one cpp file.

Current behavior

The spade just list methods names, but I can't tell which class these methods belong to. image

Expected behavior

I'd like group them by class name, like this: image

codecadwallader commented 1 year ago

Thanks for reporting the issue. We do have better support in the C# language (screenshot) but the API structures may be different in C++.

image