digitalmars.D.ide - Visual D IntelliSense not working
- Shadowblitz16 (17/17) Sep 15 2019 can someone explain to me why the visual D IntelliSense is not
- John Chapman (6/9) Sep 16 2019 Does it work if you press Ctrl+Space? The default is to show code
- Shadowblitz16 (3/14) Sep 16 2019 both of these seem to work thank you so much.
can someone explain to me why the visual D IntelliSense is not working for me? I am using visual studio 2019 and I have installed visual d from here https://rainers.github.io/visuald/visuald/StartPage.html attempt to write something it shows what is available. here is a example of my code.. module DTest3; import std.stdio; int main() { writeln("Hello D World!\n"); readln(); w return 0; }
Sep 15 2019
On Monday, 16 September 2019 at 00:00:12 UTC, Shadowblitz16 wrote:can someone explain to me why the visual D IntelliSense is not working for me? I am using visual studio 2019Does it work if you press Ctrl+Space? The default is to show code completions only when you press Ctrl+Space. You can change it to Language Options, then next to "Show expansion when" select "+ writing an identifier".
Sep 16 2019
On Monday, 16 September 2019 at 07:14:00 UTC, John Chapman wrote:On Monday, 16 September 2019 at 00:00:12 UTC, Shadowblitz16 wrote:both of these seem to work thank you so much. I changed it to show expansion when writing an identifiercan someone explain to me why the visual D IntelliSense is not working for me? I am using visual studio 2019Does it work if you press Ctrl+Space? The default is to show code completions only when you press Ctrl+Space. You can change Open Language Options, then next to "Show expansion when" select "+ writing an identifier".
Sep 16 2019