aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands.c')
-rw-r--r--src/commands.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/commands.c b/src/commands.c
index 87e7876..c2dd578 100644
--- a/src/commands.c
+++ b/src/commands.c
@@ -440,3 +440,15 @@ spawn_sh_sync(WebKitWebView *web_view, GArray *argv, GString *result) {
(void)web_view; (void)result;
spawn_sh(argv, result);
}
+
+void
+act_dump_config(WebKitWebView *web_view, GArray *argv, GString *result) {
+ (void)web_view; (void) argv; (void)result;
+ dump_config();
+}
+
+void
+act_dump_config_as_events(WebKitWebView *web_view, GArray *argv, GString *result) {
+ (void)web_view; (void) argv; (void)result;
+ dump_config_as_events();
+}