Hi All,
in VS 2022 (17.12.3) while typing a colon doesn't show any class members or methods, instead if I type a dot a get intellisense suggestions.
there is any settings I'm missing?
I'm using VO dialect and X# 2.21
thanks
Stefano
VS Intellisense
Re: VS Intellisense
Stefano,
Can you show us some sample code where you are doing this?
Robert
Can you show us some sample code where you are doing this?
Robert
XSharp Development Team
The Netherlands
robert@xsharp.eu
The Netherlands
robert@xsharp.eu
-
- Posts: 89
- Joined: Mon Sep 26, 2016 12:59 pm
- Location: Italy
Re: VS Intellisense
Hi Robert,
now it's working... Doh!
I haven't touched anything
Stefano
now it's working... Doh!
I haven't touched anything
Stefano
-
- Posts: 89
- Joined: Mon Sep 26, 2016 12:59 pm
- Location: Italy
Re: VS Intellisense
following up.
ok, I found that if there is no space between the editing text and a following symbol (in this case a ==), then intellisense doesn't get called.
If I insert a space then intellisense show up.
I made a recording to make things clearer:
https://i.imgur.com/OIFxfOQ.mp4
Stefano
ok, I found that if there is no space between the editing text and a following symbol (in this case a ==), then intellisense doesn't get called.
If I insert a space then intellisense show up.
I made a recording to make things clearer:
https://i.imgur.com/OIFxfOQ.mp4
Stefano
Re: VS Intellisense
Stefano,
That makes sense
When you start typing the code looks like this:
When you position the cursor before the first '=' character and type a colon (':') then the code looks like this:
The editor sees the ":=" token, which is an assignment token, and does not bring up code completion
Robert
That makes sense
When you start typing the code looks like this:
Code: Select all
identifier==
Code: Select all
identifier:==
Robert
XSharp Development Team
The Netherlands
robert@xsharp.eu
The Netherlands
robert@xsharp.eu