Thread overview
Visual D IntelliSense not working
Sep 16, 2019
Shadowblitz16
Sep 16, 2019
John Chapman
Sep 16, 2019
Shadowblitz16
September 16, 2019
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

I would expect something like what it does with C# where when you 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;
}
September 16, 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 2019

Does 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 match C#'s behaviour by going to Extensions > Visual D > Open Language Options, then next to "Show expansion when" select "+ writing an identifier".
September 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:
>> can someone explain to me why the visual D IntelliSense is not working for me?
>>
>> I am using visual studio 2019
>
> Does 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 match C#'s behaviour by going to Extensions > Visual D > Open Language Options, then next to "Show expansion when" select "+ writing an identifier".

both of these seem to work thank you so much.
I changed it to show expansion when writing an identifier