diff --git a/demos/manualTests/commands.ahk2 b/demos/manualTests/commands.ahk2 index c917854..e8f0b86 100644 --- a/demos/manualTests/commands.ahk2 +++ b/demos/manualTests/commands.ahk2 @@ -8,14 +8,14 @@ ;* Export AHK Symbols should give ~45 lines for this ; And open in an unsaved new editor group -MyMsgBox(text) { +MyCommandMsgBox(text) { MsgBox(text) } ;* Stop AHK Script should work after starting via Run AHK Script ; Auto-closes MsgBox windows as well :) -MyMsgBox("Hello world!") -MyMsgBox("Hello again!") +MyCommandMsgBox("Hello world!") +MyCommandMsgBox("Hello again!") ;* Add Doc Comment should add and then go to doc comment ; todo Known issue with two args will be reported later diff --git a/demos/manualTests/config.ahk2 b/demos/manualTests/config.ahk2 index b72aa85..d14e666 100644 --- a/demos/manualTests/config.ahk2 +++ b/demos/manualTests/config.ahk2 @@ -4,24 +4,16 @@ ;** AHK++.exclude tested via automated tests :) ; set AHK++.v2.general > librarySuggestions to All -; set exclude to "excluded.ahk" +; set AHK++.exclude to "excluded.ahk" ; see whether MyExcludedFunc is suggested (Ctrl+Space) MyExclu ;** AHK++.general -;* showOutput -; always: shows on start -; never: never shows -; works only for running scripts -; running: output is in the Output view - -; always -; never -y := 1 +;* showOutput (tested via e2e tests) ; todo Completion Commit Characters (AHK++.v2.completionCommitCharacters) is untested for now -;** V2: Diagnostics (AHK++.v2.diagnostics) +; todo ** V2: Diagnostics (AHK++.v2.diagnostics) ; todo Class Non Dynamic Member Check is untested for now ; todo Params Check is untested for now @@ -69,4 +61,4 @@ MyFunc() { ;* varUnset ; x := 1 -MsgBox(x) \ No newline at end of file +MsgBox(x)