Rename window_pane_visible to match other functions, from Dane Jensen.

This commit is contained in:
nicm
2026-06-15 21:47:01 +00:00
parent eb65331403
commit 482e254a49
6 changed files with 16 additions and 16 deletions

View File

@@ -135,7 +135,7 @@ cmd_select_pane_exec(struct cmd *self, struct cmdq_item *item)
}
if (args_has(args, 'm') || args_has(args, 'M')) {
if (args_has(args, 'm') && !window_pane_visible(wp))
if (args_has(args, 'm') && !window_pane_is_visible(wp))
return (CMD_RETURN_NORMAL);
if (server_check_marked())
lastwp = marked_pane.wp;