mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-16 22:05:21 -05:00
remove search.c and search.h
This commit is contained in:
parent
02fdc26fcb
commit
36784b59fa
1 changed files with 0 additions and 26 deletions
26
search.h
26
search.h
|
|
@ -1,26 +0,0 @@
|
|||
#pragma once
|
||||
|
||||
#include <xkbcommon/xkbcommon.h>
|
||||
|
||||
#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);
|
||||
Loading…
Add table
Add a link
Reference in a new issue