dlang-community/DCD

Code completion for modules with public imports

WebFreak001 opened this issue · 0 comments

Right now when importing std.string and trying to use startsWith, it won't show up in code completion with dcd/dls

The module std.string has public imports public import std.algorithm.searching : startsWith, endsWith, count;

The ModuleCache seems to miss public imports.

Here i created a reproducer: https://github.com/ryuukk/dcd_public_import_bug

It should show: |world World|

image