diff --git a/template/src/Main.kiss b/template/src/Main.kiss index 037a559..e66f8f1 100644 --- a/template/src/Main.kiss +++ b/template/src/Main.kiss @@ -6,4 +6,13 @@ (printThroughInfoMessage) // Add your extension's commands here with (defCommand <...>): // (defCommand context yourExt.exampleCommand "An example command for your extension" "C-; C-1" [] (doSomething)) + + // Add your extension's configuration here with (defConfiguration <...>): + // (defConfiguration + // :Bool configBool + // (object + // default false) + // :String configString + // (object + // default "")) ) \ No newline at end of file