Skip to content

Commit

Permalink
6.3.0 - 2024-10-19 🕳️ (#553)
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-wiemer authored Oct 19, 2024
1 parent c92377f commit 2317a5b
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 14 deletions.
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 6.3.0 - unreleased 🕳️
## 6.3.0 - 2024-10-19 🕳️

### New features

Expand Down
24 changes: 16 additions & 8 deletions demos/manualTests/config.ahk2
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@
#Requires AutoHotkey v2.0
#SingleInstance

;** AHK++.exclude tested via automated tests :)
; set AHK++.v2.general > librarySuggestions to All
; set exclude to "excluded.ahk"
; see whether MyExcludedFunc is suggested (Ctrl+Space)
MyEx

;* AHK++.general
;** AHK++.general
;* showOutput
; always: shows on start
; never: never shows
Expand All @@ -12,31 +17,34 @@

; always
; never
x := 1
y := 1

; todo Completion Commit Characters (AHK++.v2.completionCommitCharacters) is untested for now

;* AHK++.v2.diagnostics
;** V2: Diagnostics (AHK++.v2.diagnostics)
; todo Class Non Dynamic Member Check is untested for now
; todo Params Check is untested for now

; todo Exclude should work now ;)
;** V2: Formatter tested in other files :)

;* Comment Tag Regex (AHK++.v2.general)
;** V2: General (AHK++.v2.general)

;* commentTagRegex
; comments matching the regex show up in the command palette and breadcrumb
; Ctrl+Shift+O or F1 > "Go to Symbol in Editor"
;; hello world

;* Complete Function Calls (AHK++.v2.general)
;* completeFunctionCalls
; when typing a function name, the parens are automatically added
; cursor moved to the middle of the parens

;* Library suggestions (AHK++.v2.general)
;* librarySuggestions
; https://www.autohotkey.com/docs/v2/Scripts.htm#lib
; I added "MyMsgBox" to my standard library
; and "MyLocalMsgBox" to the local library

;;* AHK++.v2.warn

;** V2: Warn (AHK++.v2.warn)

;* callWithoutParentheses
MyFunc
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vscode-autohotkey-plus-plus",
"displayName": "AHK++ (AutoHotkey Plus Plus)",
"version": "6.2.3",
"version": "6.3.0",
"description": "AutoHotkey v1 and v2 language support for Visual Studio Code: IntelliSense, debugging, formatting, and more!",
"categories": [
"Debuggers",
Expand Down
4 changes: 2 additions & 2 deletions src/parser/parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ export class Parser {
excludeConfig,
Out.debug,
);
Out.log(`Building ${paths.length} files`);
Out.debug(`Building ${paths.length} files`);
for (const path of paths) {
Out.log(`Building ${path}`);
Out.debug(`Building ${path}`);
const document = await vscode.workspace.openTextDocument(
vscode.Uri.file(path),
);
Expand Down

0 comments on commit 2317a5b

Please sign in to comment.