dotnet/roslyn

Feature Request: Namespaced autocomplete

Open

#75,342 创建于 2024年10月2日

在 GitHub 查看
 (0 评论) (0 反应) (0 负责人)C# (4,257 fork)batch import
Area-IDEhelp wanted

仓库指标

Star
 (20,414 star)
PR 合并指标
 (平均合并 6天 17小时) (30 天内合并 256 个 PR)

描述

Right now you either get all types from unimported namespaces, or the immediate children if you type out the namespace.

With "namespaced autocomplete", if we have:

namespace Foo {
    namespace N1 { public class SomeClass1; }
    namespace N2 { public class SomeClass2; }
}
namespace Bar {
    namespace N3 { public class SomeClass3; }
    namespace N4 { public class SomeClass4; }
}

then dotting off either namespace would only list types nested in that namespace.

Foo. // list only SomeClass1, SomeClass2

This is still considering unimported namespaces but scoped only to the one that is spelled out.

贡献者指南