summaryrefslogtreecommitdiffstats
path: root/cmd-find-window.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 03:34:38 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 03:34:38 +0000
commitfa5845db13c5cc87a03062fedf5d9cc237d14604 (patch)
tree800970ee68d1ce0659dfbde71e1149e6a2cacf9f /cmd-find-window.c
parentInitial commit. (diff)
downloadtmux-fa5845db13c5cc87a03062fedf5d9cc237d14604.tar.xz
tmux-fa5845db13c5cc87a03062fedf5d9cc237d14604.zip
Adding upstream version 3.3a.upstream/3.3a
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'cmd-find-window.c')
-rw-r--r--cmd-find-window.c113
1 files changed, 113 insertions, 0 deletions
diff --git a/cmd-find-window.c b/cmd-find-window.c
new file mode 100644
index 0000000..6e07537
--- /dev/null
+++ b/cmd-find-window.c
@@ -0,0 +1,113 @@
+/* $OpenBSD$ */
+
+/*
+ * Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
+ * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
+ * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include <sys/types.h>
+
+#include <stdlib.h>
+
+#include "tmux.h"
+
+/*
+ * Find window containing text.
+ */
+
+static enum cmd_retval cmd_find_window_exec(struct cmd *, struct cmdq_item *);
+
+const struct cmd_entry cmd_find_window_entry = {
+ .name = "find-window",
+ .alias = "findw",
+
+ .args = { "CiNrt:TZ", 1, 1, NULL },
+ .usage = "[-CiNrTZ] " CMD_TARGET_PANE_USAGE " match-string",
+
+ .target = { 't', CMD_FIND_PANE, 0 },
+
+ .flags = 0,
+ .exec = cmd_find_window_exec
+};
+
+static enum cmd_retval
+cmd_find_window_exec(struct cmd *self, struct cmdq_item *item)
+{
+ struct args *args = cmd_get_args(self), *new_args;
+ struct cmd_find_state *target = cmdq_get_target(item);
+ struct window_pane *wp = target->wp;
+ const char *s = args_string(args, 0), *suffix = "";
+ struct args_value *filter;
+ int C, N, T;
+
+ C = args_has(args, 'C');
+ N = args_has(args, 'N');
+ T = args_has(args, 'T');
+
+ if (args_has(args, 'r') && args_has(args, 'i'))
+ suffix = "/ri";
+ else if (args_has(args, 'r'))
+ suffix = "/r";
+ else if (args_has(args, 'i'))
+ suffix = "/i";
+
+ if (!C && !N && !T)
+ C = N = T = 1;
+
+ filter = xcalloc(1, sizeof *filter);
+ filter->type = ARGS_STRING;
+
+ if (C && N && T) {
+ xasprintf(&filter->string,
+ "#{||:"
+ "#{C%s:%s},#{||:#{m%s:*%s*,#{window_name}},"
+ "#{m%s:*%s*,#{pane_title}}}}",
+ suffix, s, suffix, s, suffix, s);
+ } else if (C && N) {
+ xasprintf(&filter->string,
+ "#{||:#{C%s:%s},#{m%s:*%s*,#{window_name}}}",
+ suffix, s, suffix, s);
+ } else if (C && T) {
+ xasprintf(&filter->string,
+ "#{||:#{C%s:%s},#{m%s:*%s*,#{pane_title}}}",
+ suffix, s, suffix, s);
+ } else if (N && T) {
+ xasprintf(&filter->string,
+ "#{||:#{m%s:*%s*,#{window_name}},"
+ "#{m%s:*%s*,#{pane_title}}}",
+ suffix, s, suffix, s);
+ } else if (C) {
+ xasprintf(&filter->string,
+ "#{C%s:%s}",
+ suffix, s);
+ } else if (N) {
+ xasprintf(&filter->string,
+ "#{m%s:*%s*,#{window_name}}",
+ suffix, s);
+ } else {
+ xasprintf(&filter->string,
+ "#{m%s:*%s*,#{pane_title}}",
+ suffix, s);
+ }
+
+ new_args = args_create();
+ if (args_has(args, 'Z'))
+ args_set(new_args, 'Z', NULL);
+ args_set(new_args, 'f', filter);
+
+ window_pane_set_mode(wp, NULL, &window_tree_mode, target, new_args);
+ args_free(new_args);
+
+ return (CMD_RETURN_NORMAL);
+}