You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was doing some testing recently and typed pragma(msg, "A pragma statement").
Interestingly I got an auto-complete option for pragma whilst typing the string "A pragma statement". DCD should have been able to detect that the caret was within a string so should not have given this option.
This was on dcd 0.13.1
The text was updated successfully, but these errors were encountered:
SingingBush
changed the title
dcd gives autocompletion within string of a pragma statement
dcd gives autocompletion when the caret is within a string
Jun 5, 2022
This isn't just pragma statements. I tested with writeln("imp"); with the caret just after the 'p' and was able to get an auto-completion for import which, when hitting return, then resulted in:
writeln("import std.stdio;
");
This is related to the intellij-dlanguage plugin but the auto-completion options are driven by dcd.
I was doing some testing recently and typed
pragma(msg, "A pragma statement")
.Interestingly I got an auto-complete option for pragma whilst typing the string "A pragma statement". DCD should have been able to detect that the caret was within a string so should not have given this option.
This was on dcd 0.13.1
The text was updated successfully, but these errors were encountered: