-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix quick pick for "... does not exist" err, cleanup (#569)
- Loading branch information
1 parent
c39e3f7
commit dcfacda
Showing
8 changed files
with
44 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule ahk2
updated
from 560aad to bf91d8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
;* Formatting should not change this file | ||
; By default no action needed, older versions would show warnings or errors | ||
;* By default no action needed, older versions would show warnings or errors | ||
#Requires AutoHotkey v2.0 | ||
|
||
;* https://github.com/thqby/vscode-autohotkey2-lsp/issues/591 | ||
; https://github.com/thqby/vscode-autohotkey2-lsp/issues/591 | ||
TraySetIcon(, , true) | ||
|
||
;* https://github.com/thqby/vscode-autohotkey2-lsp/issues/594 | ||
; https://github.com/thqby/vscode-autohotkey2-lsp/issues/594 | ||
class Test { | ||
__New() { | ||
1 ? this.b := 1 : 0 | ||
} | ||
} | ||
|
||
;* https://github.com/thqby/vscode-autohotkey2-lsp/issues/595 | ||
; Should suggest `ptr` as second arg (Ctrl+Space) | ||
; https://github.com/thqby/vscode-autohotkey2-lsp/issues/595 | ||
;* Should suggest `ptr` as second arg (Ctrl+Space) | ||
DllCall.Bind("xx", "p") | ||
|
||
;* https://github.com/thqby/vscode-autohotkey2-lsp/issues/596 | ||
; https://github.com/thqby/vscode-autohotkey2-lsp/issues/596 | ||
Help:: return | ||
Sleep:: return | ||
|
||
;* https://github.com/thqby/vscode-autohotkey2-lsp/issues/574 | ||
; https://github.com/thqby/vscode-autohotkey2-lsp/issues/574 | ||
if 1 { | ||
f() { | ||
MsgBox("in") | ||
} | ||
MsgBox("out") | ||
} | ||
|
||
;* https://github.com/thqby/vscode-autohotkey2-lsp/issues/571 | ||
class class2 | ||
{ | ||
; https://github.com/thqby/vscode-autohotkey2-lsp/issues/571 | ||
class class2 { | ||
__New() { | ||
this.g := Gui() | ||
this.g.add() ; hover over add to see tooltip | ||
;* hover over `add` to see tooltip | ||
this.g.add() | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,4 @@ | |
|
||
; How many were preserved? ;) | ||
|
||
; todo other options not tested | ||
; todo other options not manually tested |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters