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

Merge thqby 2.5.4 #556

Merged
merged 1 commit into from
Nov 2, 2024
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 ahk2
Submodule ahk2 updated from 22d94d to 53d6b4
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,18 @@

## 6.4.0 - unreleased

- Update thqby's extension from 2.5.3 to 2.5.4, adding new bugfixes

### New features

- Hovering over a filename in an `#include` directive now provides a link to that document in your IDE

### Bugfixes

- Improve "go to definition" in v2 files ([thqby #610](https://github.com/thqby/vscode-autohotkey2-lsp/issues/610))
- Improve environment variables when debugging via IDE for parity with running outside of IDE ([thqby #615](https://github.com/thqby/vscode-autohotkey2-lsp/issues/615))
- Add hover tip for `switch` keyword in v2 files ([thqby #623](https://github.com/thqby/vscode-autohotkey2-lsp/issues/623))

## 6.3.0 - 2024-10-19 🕳️

### New features
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// ahk2 language configuration from thqby
// used under GNU LGPL v3
{
"comments": {
"lineComment": ";",
Expand Down Expand Up @@ -38,6 +40,12 @@
["'", "'"],
["%", "%"]
],
"folding": {
"markers": {
"start": "^\\s*;\\s*@region\\b",
"end": "^\\s*;\\s*@endregion\\b"
}
},
"indentationRules": {
"increaseIndentPattern": "^((?!;).)*(\\{[^}\"'`]*|\\([^)\"'`]*|\\[[^\\]\"'`]*)$",
"decreaseIndentPattern": "^((?!.*?/\\*).*\\*/)?\\s*[\\])}].*$",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1004,7 +1004,7 @@
".ah2",
".ahk2"
],
"configuration": "./language/ahk2.configuration.json",
"configuration": "./language/language-configuration.json",
"icon": {
"dark": "./language/autohotkey2.svg",
"light": "./language/autohotkey2.svg"
Expand Down