river: add commands to remove filter entries

This commit is contained in:
Leon Henrik Plickat
2021-06-19 08:52:58 +02:00
committed by Isaac Freund
parent 177b99c6e2
commit 9ec04c764e
3 changed files with 56 additions and 22 deletions

View File

@ -49,11 +49,13 @@ const str_to_impl_fn = [_]struct {
.{ .name = "border-width", .impl = @import("command/config.zig").borderWidth },
.{ .name = "close", .impl = @import("command/close.zig").close },
.{ .name = "csd-filter-add", .impl = @import("command/filter.zig").csdFilterAdd },
.{ .name = "csd-filter-remove", .impl = @import("command/filter.zig").csdFilterRemove },
.{ .name = "declare-mode", .impl = @import("command/declare_mode.zig").declareMode },
.{ .name = "default-layout", .impl = @import("command/layout.zig").defaultLayout },
.{ .name = "enter-mode", .impl = @import("command/enter_mode.zig").enterMode },
.{ .name = "exit", .impl = @import("command/exit.zig").exit },
.{ .name = "float-filter-add", .impl = @import("command/filter.zig").floatFilterAdd },
.{ .name = "float-filter-remove", .impl = @import("command/filter.zig").floatFilterRemove },
.{ .name = "focus-follows-cursor", .impl = @import("command/focus_follows_cursor.zig").focusFollowsCursor },
.{ .name = "focus-output", .impl = @import("command/output.zig").focusOutput },
.{ .name = "focus-view", .impl = @import("command/focus_view.zig").focusView },