Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-wiemer committed Oct 29, 2024
1 parent 30a8e43 commit d5e0c13
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 0 deletions.
9 changes: 9 additions & 0 deletions manualTests/205goToDefinition/included1.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%

My205IncludedFunc() {
MsgBox % "Hello from included 1!"
}
9 changes: 9 additions & 0 deletions manualTests/205goToDefinition/included2.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%

My205IncludedFunc() {
MsgBox % "Hello from included 2!"
}
9 changes: 9 additions & 0 deletions manualTests/205goToDefinition/main1.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%

#Include, included1.ahk1

My205IncludedFunc()
9 changes: 9 additions & 0 deletions manualTests/205goToDefinition/main2.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%

#Include, included2.ahk1

My205IncludedFunc()

0 comments on commit d5e0c13

Please sign in to comment.