dlang-community / DCD

The D Completion Daemon is an auto-complete program for the D programming language
GNU General Public License v3.0
349 stars 71 forks source link

Can't complete name of sub-struct in struct #630

Closed CyberShadow closed 3 years ago

CyberShadow commented 3 years ago
struct A
{
    struct BBBBB
    {

    }
    BBB|
}

With caret at |, DCD should suggest BBBBB, but it offers no suggestions.

Fully-qualifying the name (A.BBB) makes it work.

WebFreak001 commented 3 years ago

yes same issue, gonna close this as duplicate of the other as that one has more information