mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-15 22:05:24 -05:00
initial vimode implementation
This commit is contained in:
parent
be19ca2b20
commit
e2c4ea3535
17 changed files with 1579 additions and 318 deletions
33
vimode.h
Normal file
33
vimode.h
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
#pragma once
|
||||
|
||||
#include <xkbcommon/xkbcommon.h>
|
||||
|
||||
#include "key-binding.h"
|
||||
#include "terminal.h"
|
||||
|
||||
void vimode_begin(struct terminal *term);
|
||||
|
||||
/* vimode_search_begin
|
||||
*
|
||||
* Enter search mode directly without needing to interact with the
|
||||
* vimode first. Enters vimode as well.
|
||||
*/
|
||||
void vimode_search_begin(struct terminal *term);
|
||||
|
||||
void vimode_cancel(struct terminal *term);
|
||||
void vimode_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);
|
||||
|
||||
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);
|
||||
|
||||
void vimode_view_down(struct terminal *term, int delta);
|
||||
Loading…
Add table
Add a link
Reference in a new issue