From 36784b59faf5192d87c53d139b6c174059ae12a5 Mon Sep 17 00:00:00 2001 From: Piotr Kocia Date: Mon, 31 Mar 2025 12:04:57 +0200 Subject: [PATCH] remove search.c and search.h --- search.h | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 search.h diff --git a/search.h b/search.h deleted file mode 100644 index ee8ecd76..00000000 --- a/search.h +++ /dev/null @@ -1,26 +0,0 @@ -#pragma once - -#include - -#include "key-binding.h" -#include "terminal.h" - -void search_begin(struct terminal *term); -void search_cancel(struct terminal *term); -void search_input( - struct seat *seat, struct terminal *term, - const struct key_binding_set *bindings, uint32_t key, - xkb_keysym_t sym, xkb_mod_mask_t mods, xkb_mod_mask_t consumed, - const xkb_keysym_t *raw_syms, size_t raw_count, - uint32_t serial); -void search_add_chars(struct terminal *term, const char *text, size_t len); - -void search_selection_cancelled(struct terminal *term); - -struct search_match_iterator { - struct terminal *term; - struct coord start; -}; - -struct search_match_iterator search_matches_new_iter(struct terminal *term); -struct range search_matches_next(struct search_match_iterator *iter);