-
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.
Add manual e2e test for "Go to Definition" broken for v1 scripts in 6…
….4.0 #559
- Loading branch information
1 parent
84f9121
commit 86cf438
Showing
2 changed files
with
19 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#NoEnv | ||
#SingleInstance, Force | ||
SendMode, Input | ||
SetBatchLines, -1 | ||
SetWorkingDir, %A_ScriptDir% | ||
|
||
MyDefProviderFunc() { | ||
MsgBox % "Hi from MyDefProviderFunc" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#NoEnv | ||
#SingleInstance, Force | ||
SendMode, Input | ||
SetBatchLines, -1 | ||
SetWorkingDir, %A_ScriptDir% | ||
|
||
#Include ./included.ahk1 | ||
|
||
;* Should be able to ctrl+click to jump to `included.ahk1` | ||
MyDefProviderFunc() |