Rename focus -> focus-view

This commit is contained in:
Isaac Freund 2020-06-02 14:04:23 +02:00
parent 9856bc92ec
commit 0e9ecb6051
No known key found for this signature in database
GPG key ID: 86DED400DDFD7A11
3 changed files with 5 additions and 5 deletions

View file

@ -13,8 +13,8 @@ riverctl map normal $mod Q close
riverctl map normal $mod E exit
# Mod+J and Mod+K to focus the next/previous view in the layout stack
riverctl map normal $mod J focus next
riverctl map normal $mod K focus previous
riverctl map normal $mod J focus-view next
riverctl map normal $mod K focus-view previous
# Mod+Period and Mod+Comma to focus the next/previous output
riverctl map normal $mod Period focus-output next

View file

@ -24,7 +24,7 @@ const impl = struct {
const declareMode = @import("command/declare_mode.zig").declareMode;
const enterMode = @import("command/enter_mode.zig").enterMode;
const exit = @import("command/exit.zig").exit;
const focus = @import("command/focus.zig").focus;
const focusView = @import("command/focus_view.zig").focusView;
const focusAllTags = @import("command/focus_all_tags.zig").focusAllTags;
const focusOutput = @import("command/focus_output.zig").focusOutput;
const map = @import("command/map.zig").map;
@ -68,7 +68,7 @@ const str_to_impl_fn = [_]Definition{
.{ .name = "declare-mode", .impl = impl.declareMode},
.{ .name = "enter-mode", .impl = impl.enterMode },
.{ .name = "exit", .impl = impl.exit },
.{ .name = "focus", .impl = impl.focus },
.{ .name = "focus-view", .impl = impl.focusView },
.{ .name = "focus-all-tags", .impl = impl.focusAllTags },
.{ .name = "focus-output", .impl = impl.focusOutput },
.{ .name = "focus-tag", .impl = impl.focusTag },

View file

@ -27,7 +27,7 @@ const ViewStack = @import("../view_stack.zig").ViewStack;
/// Focus either the next or the previous visible view, depending on the enum
/// passed. Does nothing if there are 1 or 0 views in the stack.
pub fn focus(
pub fn focusView(
allocator: *std.mem.Allocator,
seat: *Seat,
args: []const []const u8,