Skip to content

Commit

Permalink
Merge thqby 2.5.4 (#556)
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-wiemer authored Nov 2, 2024
1 parent 578d852 commit dbf6d3f
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
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

0 comments on commit dbf6d3f

Please sign in to comment.