aboutsummaryrefslogtreecommitdiff
path: root/src/command.zig
diff options
context:
space:
mode:
authorIsaac Freund <ifreund@ifreund.xyz>2020-06-01 00:04:05 +0200
committerIsaac Freund <ifreund@ifreund.xyz>2020-06-01 00:04:05 +0200
commit134eff259382edad729bdce4f2b36185111898a2 (patch)
tree9ee94907c9067b2e7f01931a1cbbb57a2c1dcb4b /src/command.zig
parente43bb78160d403a0d77759fcc2bc50fc0fc0337e (diff)
downloadriver-134eff259382edad729bdce4f2b36185111898a2.tar.gz
river-134eff259382edad729bdce4f2b36185111898a2.tar.xz
Rename mode command to enter_mode
Diffstat (limited to 'src/command.zig')
-rw-r--r--src/command.zig6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/command.zig b/src/command.zig
index 39b8b79..e2c32b1 100644
--- a/src/command.zig
+++ b/src/command.zig
@@ -29,7 +29,7 @@ const impl = struct {
const layout = @import("command/layout.zig").layout;
const modMasterCount = @import("command/mod_master_count.zig").modMasterCount;
const modMasterFactor = @import("command/mod_master_factor.zig").modMasterFactor;
- const mode = @import("command/mode.zig").mode;
+ const enterMode = @import("command/enter_mode.zig").enterMode;
const sendToOutput = @import("command/send_to_output.zig").sendToOutput;
const spawn = @import("command/spawn.zig").spawn;
const tagView = @import("command/tag_view.zig").tagView;
@@ -68,10 +68,10 @@ const str_to_impl_fn = [_]Definition{
.{ .name = "focus_all_tags", .impl = impl.focusAllTags },
.{ .name = "focus_output", .impl = impl.focusOutput },
.{ .name = "focus_tag", .impl = impl.focusTag },
- .{ .name = "layout", .impl = impl.layout},
+ .{ .name = "layout", .impl = impl.layout },
.{ .name = "mod_master_count", .impl = impl.modMasterCount },
.{ .name = "mod_master_factor", .impl = impl.modMasterFactor },
- .{ .name = "mode", .impl = impl.mode },
+ .{ .name = "enter_mode", .impl = impl.enterMode },
.{ .name = "send_to_output", .impl = impl.sendToOutput },
.{ .name = "spawn", .impl = impl.spawn },
.{ .name = "tag_view", .impl = impl.tagView },