From 914ffc888785f4046d9a3fab59a4042871842c3d Mon Sep 17 00:00:00 2001 From: Dane Jensen Date: Wed, 15 Apr 2026 12:33:08 -0700 Subject: [PATCH] touchup. --- cmd-split-window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd-split-window.c b/cmd-split-window.c index 0789d0dc..d2979646 100644 --- a/cmd-split-window.c +++ b/cmd-split-window.c @@ -30,7 +30,7 @@ * Create a new pane. */ -#define NEW_PANE_TEMPLATE "#{session_name}:#{window_index}.#{pane_index}" +#define SPLIT_WINDOW_TEMPLATE "#{session_name}:#{window_index}.#{pane_index}" static enum cmd_retval cmd_split_window_exec(struct cmd *, struct cmdq_item *); @@ -363,7 +363,7 @@ cmd_split_window_exec(struct cmd *self, struct cmdq_item *item) if (args_has(args, 'P')) { if ((template = args_get(args, 'F')) == NULL) - template = NEW_PANE_TEMPLATE; + template = SPLIT_WINDOW_TEMPLATE; cp = format_single(item, template, tc, s, wl, new_wp); cmdq_print(item, "%s", cp); free(cp);