Skip to content

Commit

Permalink
Cleanup config.ahk2
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-wiemer committed Oct 19, 2024
1 parent 8495855 commit f300ab2
Showing 1 changed file with 16 additions and 8 deletions.
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

0 comments on commit f300ab2

Please sign in to comment.