thqby / vscode-autohotkey2-lsp

Autohotkey v2 Language Support using vscode-lsp.
https://marketplace.visualstudio.com/items?itemName=thqby.vscode-autohotkey2-lsp
GNU Lesser General Public License v3.0
210 stars 21 forks source link

VSCode Function hover tooltip not working for 'this' instance #571

Closed sousvideonlow closed 1 month ago

sousvideonlow commented 1 month ago

2024-08-16 11-01-47

[code]class class1 ; able to see function definitions { __New() { g:=Gui() g.add() } }

class class2 ; NOT able to see function definitions { __New() { this.g:=Gui() this.g.add() } }

[/code]

thqby commented 1 month ago

Only the following are supported.

class class2
{
g:=Gui()
__New()
{
this.g.add()
}
}
sousvideonlow commented 1 month ago

Ok can accept that to define it will have to be above