aboutsummaryrefslogtreecommitdiff
path: root/src/socket/parser.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/socket/parser.rs')
-rw-r--r--src/socket/parser.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/socket/parser.rs b/src/socket/parser.rs
index 0de0248..491c315 100644
--- a/src/socket/parser.rs
+++ b/src/socket/parser.rs
@@ -109,8 +109,11 @@ fn func<'a>(s: &'a str) -> Result<ExecFn, &'static str> {
"exec" => Ok(exec),
"move-win" => Ok(move_win),
"move-win-to" => Ok(move_win_to),
+ "move-win-sticky" => Ok(move_win_sticky),
"resize-win" => Ok(resize_win),
"focus-next" => Ok(focus_next),
+ "close-win" => Ok(close_win),
+ "fullscreen" => Ok(fullscreen),
"quit" => Ok(quit_dotwm),
_ => Err("unknown function"),
}