Skip to content

Commit

Permalink
Add manual e2e test for "Go to Definition" broken for v1 scripts in 6…
Browse files Browse the repository at this point in the history
….4.0 #559
  • Loading branch information
mark-wiemer committed Nov 8, 2024
1 parent 84f9121 commit 86cf438
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
9 changes: 9 additions & 0 deletions demos/manualTests/definitionProvider/included.ahk1
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"
}
10 changes: 10 additions & 0 deletions demos/manualTests/definitionProvider/main.ahk1
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()

0 comments on commit 86cf438

Please sign in to comment.