Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move to personal GitHub, not org #584

Merged
merged 3 commits into from
Jan 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug-report--non-formatter-.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ labels: bug
assignees: mark-wiemer
---

For troubleshooting assistance, refer to the [troubleshooting guide](https://github.com/mark-wiemer-org/docs/Troubleshooting.md)
For troubleshooting assistance, refer to the [troubleshooting guide](https://github.com/mark-wiemer/docs/Troubleshooting.md)

## Description

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/pre-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ labels: pre-release
assignees: mark-wiemer
---

- [ ] My issue is different from [other reported pre-release issues](https://github.com/mark-wiemer-org/ahkpp/issues?q=sort%3Aupdated-desc+label%3Apre-release+is%3Aopen)
- [ ] My issue is different from [other reported pre-release issues](https://github.com/mark-wiemer/ahkpp/issues?q=sort%3Aupdated-desc+label%3Apre-release+is%3Aopen)

**Is your issue related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/add-to-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/[email protected]
with:
# https://github.com/settings/tokens
# https://github.com/mark-wiemer-org/ahkpp/settings/secrets/actions
# https://github.com/mark-wiemer/ahkpp/settings/secrets/actions
# Saved locally as "Add to project PAT"
project-url: https://github.com/orgs/mark-wiemer-org/projects/1
project-url: https://github.com/orgs/mark-wiemer/projects/1
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Publish to Visual Studio Marketplace
uses: HaaLeo/publish-vscode-extension@v1
with:
# https://github.com/mark-wiemer-org/ahkpp/settings/secrets/actions
# https://github.com/mark-wiemer/ahkpp/settings/secrets/actions
# https://dev.azure.com/markwiemer/_usersSettings/tokens
# Saved locally as "CI VS Code Marketplace Publish Token"
pat: ${{ secrets.VS_MARKETPLACE_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "ahk2"]
path = ahk2
url = https://github.com/mark-wiemer-org/vscode-autohotkey2-lsp
url = https://github.com/mark-wiemer/ahk2-lsp
6 changes: 3 additions & 3 deletions Contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Please validate the build before opening a PR. Automated checks will have to pas

### Automated checks

All checks are found in [📄 `package.json#scripts`](https://github.com/mark-wiemer-org/ahkpp/blob/main/package.json).
All checks are found in [📄 `package.json#scripts`](https://github.com/mark-wiemer/ahkpp/blob/main/package.json).

- Validate: Make sure everything is working correctly
- Lint
Expand All @@ -75,7 +75,7 @@ All checks are found in [📄 `package.json#scripts`](https://github.com/mark-wi

## Syntax highlighting

The syntax in [📄 `language/ahk.tmLanguage.yaml`](https://github.com/mark-wiemer-org/ahkpp/blob/main/language/ahk.tmLanguage.yaml) determines how syntax highlighting is applied.
The syntax in [📄 `language/ahk.tmLanguage.yaml`](https://github.com/mark-wiemer/ahkpp/blob/main/language/ahk.tmLanguage.yaml) determines how syntax highlighting is applied.

```
; No syntax highlighting here 😞
Expand All @@ -94,7 +94,7 @@ Some resources:
To update the syntax, we recommend following this flow:

1. 🤔 Take some time to reproduce a syntax highlighting issue with as little AHK code as possible
1. ➕ Add a new file in [📁 `src/test/suite/grammar/samples`](https://github.com/mark-wiemer-org/ahkpp/tree/main/src/test/suite/grammar/samples) that demonstrates the issue
1. ➕ Add a new file in [📁 `src/test/suite/grammar/samples`](https://github.com/mark-wiemer/ahkpp/tree/main/src/test/suite/grammar/samples) that demonstrates the issue
1. 🏃 Run `npm run test_grammar` to generate a `.snap` snapshot for the file you added
1. ✏️ Edit the YAML grammar
1. 🧪 Repeat the last two steps until everything is working as you want
Expand Down
166 changes: 83 additions & 83 deletions changelog.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/Development.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ Unless otherwise specified, commit messages don't matter.
1. Open the context menu (right-click).
1. Select `Install Extension VSIX`.
1. Reload the window. (`F1` -> Developer: Reload Window)
1. Validate that the vsix includes the readme, license, and changelog visible in the IDE's extension view ([#537](https://github.com/mark-wiemer-org/ahkpp/issues/537))
1. Validate that the vsix includes the readme, license, and changelog visible in the IDE's extension view ([#537](https://github.com/mark-wiemer/ahkpp/issues/537))
1. Ensure all tests pass, including manual ones on the new changes.

### Publishing

1. Tag the release
1. e.g. `git checkout main && git pull && git tag v1.2.3 && git push origin v1.2.3`
1. [Create a new GitHub release for this tag](https://github.com/mark-wiemer-org/ahkpp/tags)
1. [Create a new GitHub release for this tag](https://github.com/mark-wiemer/ahkpp/tags)
1. Release title: Same as in [changelog.md](../changelog.md)
1. Description: Changelog entry, excluding the heading for this version
1. Attach binary
Expand All @@ -53,7 +53,7 @@ When the tag is pushed, changes will automatically be published.

### Validating deployment

1. [Deploy workflow](https://github.com/mark-wiemer-org/ahkpp/actions/workflows/deploy.yml)
1. [Deploy workflow](https://github.com/mark-wiemer/ahkpp/actions/workflows/deploy.yml)
1. [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=mark-wiemer.vscode-autohotkey-plus-plus)
1. [Publisher view](https://marketplace.visualstudio.com/manage/publishers/mark-wiemer): validation takes about 5 minutes
1. [Open VSX Marketplace](https://open-vsx.org/extension/mark-wiemer/vscode-autohotkey-plus-plus)
2 changes: 1 addition & 1 deletion docs/FullV2Integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ New, added:

These issues will be backlogged and resolved after a full release

- Exclude setting doesn't work, ref [issue #488](https://github.com/mark-wiemer-org/ahkpp/issues/488)
- Exclude setting doesn't work, ref [issue #488](https://github.com/mark-wiemer/ahkpp/issues/488)
- No newline at end of file when formatting (inconsistent with v1 and industry standards)
- Issue with custom folding and comment blocks (see v2/settings.ahk2)
- Cleanup `indentString` to be "spaces" vs "tabs" with a `tabSize` option as well
Expand Down
2 changes: 1 addition & 1 deletion docs/InstallFromVSIX.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Some IDEs support installing extensions directly from your local machine. This can be faster and more private than downloading from a registry.

All releases are published to https://github.com/mark-wiemer-org/ahkpp/releases as vsix files.
All releases are published to https://github.com/mark-wiemer/ahkpp/releases as vsix files.

Once you have the file downloaded, you can open your IDE, go to the extensions view, and select "Install from VSIX..."

Expand Down
2 changes: 1 addition & 1 deletion docs/TemplateSnippet.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ You can customize the template snippet to fit your needs:

1. Update your VS Code settings for AHK > File > "Template snippet name" to the name of your snippet (`CustomAhkTemplate`)

To test, just create a new file! If you have any issues, please [open a discussion](https://github.com/mark-wiemer-org/ahkpp/discussions).
To test, just create a new file! If you have any issues, please [open a discussion](https://github.com/mark-wiemer/ahkpp/discussions).

## Troubleshooting

Expand Down
10 changes: 5 additions & 5 deletions docs/Troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ If AHK++ isn't behaving as you expect, here are some things you can try.

For AHK v2, the language server may not behave correctly if it fails to identify a valid path to an interpreter like `AutoHotkey.exe`. The status bar at the bottom left of your IDE should show the current interpreter or an option to "Select AHK v2 Interpreter".

> Currently, the "Select AHK v2 Interpreter" command does not work, ref [#571](https://github.com/mark-wiemer-org/ahkpp/issues/571).
> Currently, the "Select AHK v2 Interpreter" command does not work, ref [#571](https://github.com/mark-wiemer/ahkpp/issues/571).
> To ensure the extension fully recognizes your interpreter, try to run (not debug) an AHK v2 script. If you get a "... does not exist" error message, the corresponding quick pick will work.

> Currently, AHK++ does not support the Windows Store edition of AHK v2, but there are plans to support it by the end of 2024, ref [#496](https://github.com/mark-wiemer-org/ahkpp/issues/496).
> Currently, AHK++ does not support the Windows Store edition of AHK v2, but there are plans to support it by the end of 2024, ref [#496](https://github.com/mark-wiemer/ahkpp/issues/496).

Interpreter found:

Expand All @@ -25,7 +25,7 @@ Some settings changes only take effect after restart. Other issues may arise tha

To restart all extensions, press F1 to open the command palette and enter "Developer: Restart Extension Host". Extensions should restart within a few seconds.

If you're able to consistently reproduce the issue, please [open a bug](https://github.com/mark-wiemer-org/ahkpp/issues/new/choose).
If you're able to consistently reproduce the issue, please [open a bug](https://github.com/mark-wiemer/ahkpp/issues/new/choose).

## Install specific version of AHK++

Expand All @@ -41,12 +41,12 @@ If a recent release is causing issues, you can revert to a previous version via

The current installed version of AHK++ is also shown to the right of the extension name for clarity, outlined above in red.

If the issue goes away with the older version of AHK++, please [open a bug](https://github.com/mark-wiemer-org/ahkpp/issues/new/choose).
If the issue goes away with the older version of AHK++, please [open a bug](https://github.com/mark-wiemer/ahkpp/issues/new/choose).

## Advanced troubleshooting

These steps shouldn't be necessary for most issues, and may be difficult to execute. Feel free to open an issue without trying these :)

### Debug logs

Using Ctrl+Shift+U to open the output view, you can select either of the AHK++ channels to see all debug logs. You're welcome to map these logs to `Output.debug` and `console.log` calls in the source code. Please include your findings if you [open a bug](https://github.com/mark-wiemer-org/ahkpp/issues/new/choose).
Using Ctrl+Shift+U to open the output view, you can select either of the AHK++ channels to see all debug logs. You're welcome to map these logs to `Output.debug` and `console.log` calls in the source code. Please include your findings if you [open a bug](https://github.com/mark-wiemer/ahkpp/issues/new/choose).
2 changes: 1 addition & 1 deletion language/samples/0-ahk-explorer.ahk1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
; From https://github.com/FuPeiJiang/ahk_explorer/blob/tests/ahk_explorer.ahk
; Copyright 2021 FuPeiJiang, used with permission
; https://github.com/mark-wiemer-org/ahkpp/pull/32#issuecomment-770233225
; https://github.com/mark-wiemer/ahkpp/pull/32#issuecomment-770233225

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#SingleInstance, force
Expand Down
2 changes: 1 addition & 1 deletion language/samples/0-ahk-explorer.ahk1.snap
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
>; Copyright 2021 FuPeiJiang, used with permission
#^ source.ahk comment.line.semicolon.ahk punctuation.definition.comment.ahk
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ source.ahk comment.line.semicolon.ahk
>; https://github.com/mark-wiemer-org/ahkpp/pull/32#issuecomment-770233225
>; https://github.com/mark-wiemer/ahkpp/pull/32#issuecomment-770233225
#^ source.ahk comment.line.semicolon.ahk punctuation.definition.comment.ahk
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ source.ahk comment.line.semicolon.ahk
>
Expand Down
2 changes: 1 addition & 1 deletion language/samples/295-command-comment.ahk1
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
; [Issue #295](https://github.com/mark-wiemer-org/ahkpp/issues/295)
; [Issue #295](https://github.com/mark-wiemer/ahkpp/issues/295)
ToolTip ;Comment
ToolTip;NotComment
2 changes: 1 addition & 1 deletion language/samples/295-command-comment.ahk1.snap
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
>; [Issue #295](https://github.com/mark-wiemer-org/ahkpp/issues/295)
>; [Issue #295](https://github.com/mark-wiemer/ahkpp/issues/295)
#^ source.ahk comment.line.semicolon.ahk punctuation.definition.comment.ahk
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ source.ahk comment.line.semicolon.ahk
>ToolTip ;Comment
Expand Down
2 changes: 1 addition & 1 deletion language/samples/295-directive-comment.ahk1
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
; [Issue #295](https://github.com/mark-wiemer-org/ahkpp/issues/295)
; [Issue #295](https://github.com/mark-wiemer/ahkpp/issues/295)
#KeyHistory MaxEvents ;Comment
#KeyHistory MaxEvents;NotComment
2 changes: 1 addition & 1 deletion language/samples/295-directive-comment.ahk1.snap
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
>; [Issue #295](https://github.com/mark-wiemer-org/ahkpp/issues/295)
>; [Issue #295](https://github.com/mark-wiemer/ahkpp/issues/295)
#^ source.ahk comment.line.semicolon.ahk punctuation.definition.comment.ahk
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ source.ahk comment.line.semicolon.ahk
>#KeyHistory MaxEvents ;Comment
Expand Down
2 changes: 1 addition & 1 deletion language/samples/295-function-call-comment.ahk1
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
; [Issue #295](https://github.com/mark-wiemer-org/ahkpp/issues/295)
; [Issue #295](https://github.com/mark-wiemer/ahkpp/issues/295)
Foo();NotComment
Foo() ;Comment
2 changes: 1 addition & 1 deletion language/samples/295-function-call-comment.ahk1.snap
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
>; [Issue #295](https://github.com/mark-wiemer-org/ahkpp/issues/295)
>; [Issue #295](https://github.com/mark-wiemer/ahkpp/issues/295)
#^ source.ahk comment.line.semicolon.ahk punctuation.definition.comment.ahk
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ source.ahk comment.line.semicolon.ahk
>Foo();NotComment
Expand Down
2 changes: 1 addition & 1 deletion language/samples/295-function-definition-comment.ahk1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; [Issue #295](https://github.com/mark-wiemer-org/ahkpp/issues/295)
; [Issue #295](https://github.com/mark-wiemer/ahkpp/issues/295)
Foo() {;NotComment
MsgBox
}
Expand Down
2 changes: 1 addition & 1 deletion language/samples/295-function-definition-comment.ahk1.snap
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
>; [Issue #295](https://github.com/mark-wiemer-org/ahkpp/issues/295)
>; [Issue #295](https://github.com/mark-wiemer/ahkpp/issues/295)
#^ source.ahk comment.line.semicolon.ahk punctuation.definition.comment.ahk
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ source.ahk comment.line.semicolon.ahk
>Foo() {;NotComment
Expand Down
2 changes: 1 addition & 1 deletion language/samples/295-label-comment.ahk1
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
; [Issue #295](https://github.com/mark-wiemer-org/ahkpp/issues/295)
; [Issue #295](https://github.com/mark-wiemer/ahkpp/issues/295)
OpenLabel: ;Comment
OpenLabel:;NotComment
2 changes: 1 addition & 1 deletion language/samples/295-label-comment.ahk1.snap
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
>; [Issue #295](https://github.com/mark-wiemer-org/ahkpp/issues/295)
>; [Issue #295](https://github.com/mark-wiemer/ahkpp/issues/295)
#^ source.ahk comment.line.semicolon.ahk punctuation.definition.comment.ahk
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ source.ahk comment.line.semicolon.ahk
>OpenLabel: ;Comment
Expand Down
2 changes: 1 addition & 1 deletion language/samples/318-keyword-in-command.ahk1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; [Issue #318](https://github.com/mark-wiemer-org/ahkpp/issues/318)
; [Issue #318](https://github.com/mark-wiemer/ahkpp/issues/318)
RAlt & j::AltTab
RAlt & k::ShiftAltTab
AutoTrim, On
Expand Down
2 changes: 1 addition & 1 deletion language/samples/318-keyword-in-command.ahk1.snap
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
>; [Issue #318](https://github.com/mark-wiemer-org/ahkpp/issues/318)
>; [Issue #318](https://github.com/mark-wiemer/ahkpp/issues/318)
#^ source.ahk comment.line.semicolon.ahk punctuation.definition.comment.ahk
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ source.ahk comment.line.semicolon.ahk
>RAlt & j::AltTab
Expand Down
2 changes: 1 addition & 1 deletion language/samples/357-colon-comment.ahk1
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
; [Issue #357](https://github.com/mark-wiemer-org/ahkpp/issues/357)
; [Issue #357](https://github.com/mark-wiemer/ahkpp/issues/357)
; Test::Comment
; Test::Comment
2 changes: 1 addition & 1 deletion language/samples/357-colon-comment.ahk1.snap
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
>; [Issue #357](https://github.com/mark-wiemer-org/ahkpp/issues/357)
>; [Issue #357](https://github.com/mark-wiemer/ahkpp/issues/357)
#^ source.ahk comment.line.semicolon.ahk punctuation.definition.comment.ahk
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ source.ahk comment.line.semicolon.ahk
>; Test::Comment
Expand Down
2 changes: 1 addition & 1 deletion language/samples/69-if-directive.ahk1
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
; [Issue #69](https://github.com/mark-wiemer-org/ahkpp/issues/69)
; [Issue #69](https://github.com/mark-wiemer/ahkpp/issues/69)
#If WinActive("ahk_class Notepad") or WinActive(MyWindowTitle) ;Comment
2 changes: 1 addition & 1 deletion language/samples/69-if-directive.ahk1.snap
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
>; [Issue #69](https://github.com/mark-wiemer-org/ahkpp/issues/69)
>; [Issue #69](https://github.com/mark-wiemer/ahkpp/issues/69)
#^ source.ahk comment.line.semicolon.ahk punctuation.definition.comment.ahk
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ source.ahk comment.line.semicolon.ahk
>#If WinActive("ahk_class Notepad") or WinActive(MyWindowTitle) ;Comment
Expand Down
2 changes: 1 addition & 1 deletion language/samples/86-import-comment.ahk1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; [Issue #86](https://github.com/mark-wiemer-org/ahkpp/issues/86)
; [Issue #86](https://github.com/mark-wiemer/ahkpp/issues/86)
#Include
#Include File.ahk
#Include File.ahk ;Comment
Expand Down
2 changes: 1 addition & 1 deletion language/samples/86-import-comment.ahk1.snap
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
>; [Issue #86](https://github.com/mark-wiemer-org/ahkpp/issues/86)
>; [Issue #86](https://github.com/mark-wiemer/ahkpp/issues/86)
#^ source.ahk comment.line.semicolon.ahk punctuation.definition.comment.ahk
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ source.ahk comment.line.semicolon.ahk
>#Include
Expand Down
2 changes: 1 addition & 1 deletion license.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Portions copyright:
- Files in the ahk2 submodule are licensed under [GNU Lesser General Public License version 3](https://opensource.org/license/lgpl-3-0).
- AutoHotkey v2 definition files provided by [GroggyOtter](https://github.com/GroggyOtter/ahkv2_definition_rewrite) and [used with permission](https://github.com/GroggyOtter/ahkv2_definition_rewrite/issues/8)
- Other files licensed outside of MIT are marked as such at the top of the file.
- Please [open a discussion](https://github.com/mark-wiemer-org/ahkpp/discussions/new?category=q-a) if you have any questions :)
- Please [open a discussion](https://github.com/mark-wiemer/ahkpp/discussions/new?category=q-a) if you have any questions :)
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
"ahk v2",
"ahk v1"
],
"homepage": "https://github.com/mark-wiemer-org/ahkpp/blob/main/readme.md",
"homepage": "https://github.com/mark-wiemer/ahkpp/blob/main/readme.md",
"bugs": {
"url": "https://github.com/mark-wiemer-org/ahkpp/issues"
"url": "https://github.com/mark-wiemer/ahkpp/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mark-wiemer-org/ahkpp.git"
"url": "https://github.com/mark-wiemer/ahkpp.git"
},
"license": "See license.md",
"publisher": "mark-wiemer",
Expand Down Expand Up @@ -284,7 +284,7 @@
},
"AHK++.v1.file": {
"type": "object",
"markdownDescription": "[Learn more about the template snippet](https://github.com/mark-wiemer-org/ahkpp/tree/main/docs/TemplateSnippet.md)",
"markdownDescription": "[Learn more about the template snippet](https://github.com/mark-wiemer/ahkpp/tree/main/docs/TemplateSnippet.md)",
"properties": {
"compileBaseFile": {
"type": "string",
Expand Down
Loading
Loading