microsoft / vscode-powerquery

Visual Studio Code extension for Power Query / M.
MIT License
88 stars 16 forks source link

IntelliSense does not include current section member's name #94

Closed bgribaudo closed 3 years ago

bgribaudo commented 3 years ago

When typing up the following expression:

section Section1;

shared A = @A; // for simplicity's sake; for a real life example, pretend that A is a recursive function 
shared B = A;

IntelliSense for B's expression correctly includes identifier A in the list of options provided; however, the IntelliSense for A's expression does not include itself, even when using an inclusive identifier reference (@A).

Seems like A's IntelliSence should include itself, at least when an @-reference is being used.

bgribaudo commented 3 years ago

Moved to https://github.com/microsoft/powerquery-language-services/issues/109