foot/input.h
Daniel Eklöf 0d188895c3
search: add support for user configurable key bindings
No default bindings defined yet, though.
2020-03-08 15:28:47 +01:00

13 lines
360 B
C

#pragma once
#include <stdint.h>
#include <wayland-client.h>
#include "wayland.h"
extern const struct wl_keyboard_listener keyboard_listener;
extern const struct wl_pointer_listener pointer_listener;
void input_repeat(struct wayland *wayl, uint32_t key);
void input_execute_binding(
struct terminal *term, enum binding_action action, uint32_t serial);