-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fb7b9e5
commit 5819abc
Showing
113 changed files
with
510 additions
and
585 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
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 |
---|---|---|
|
@@ -18,6 +18,6 @@ jobs: | |
- uses: actions/[email protected] | ||
with: | ||
# https://github.com/settings/tokens | ||
# https://github.com/vscode-autohotkey/ahkpp/settings/secrets/actions | ||
# https://github.com/mark-wiemer-org/ahkpp/settings/secrets/actions | ||
project-url: https://github.com/orgs/mark-wiemer-org/projects/1 | ||
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} |
Large diffs are not rendered by default.
Oops, something went wrong.
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 4f5fd5 to 7a3e11
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,37 @@ | ||
#Requires AutoHotkey v2.0 | ||
|
||
; Tests for features provided by thqby's extension | ||
|
||
; todo Debug AHK and Attach is untested for now | ||
|
||
; todo Debug AHK with Params is untested for now | ||
|
||
; Export AHK Symbols should give ~20 lines for this | ||
; And open in an unsaved new editor group | ||
MyMsgBox(text) { | ||
MsgBox(text) | ||
} | ||
|
||
; Stop AHK Script should work after starting via Run AHK Script | ||
; Auto-closes MsgBox windows as well :) | ||
MyMsgBox("Hello world!") | ||
MyMsgBox("Hello again!") | ||
|
||
; Add Doc Comment should add and then go to doc comment | ||
; todo Known issue with two args will be reported later | ||
AddDocComment(arg1, arg2) { | ||
; do nothing | ||
} | ||
|
||
; Update File Version Info should update the file version info ;) | ||
; create block comment, don't save, put cursor at end of first line | ||
; update version only via quick pick | ||
|
||
; Switch AHK Version should switch and ignore the `Requires` directive | ||
|
||
; todo Select AHK Syntaxes is untested for now | ||
|
||
; todo Set A_ScriptDir Here is untested for now | ||
|
||
; Set AHK v2 Interpreter should open quick pick with installed options | ||
; updates should reflect in workspace settings |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.