mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
config: rename enum config_key_binding_type -> key_binding_type
This commit is contained in:
parent
56b948ca20
commit
9814d96206
4 changed files with 7 additions and 7 deletions
4
config.c
4
config.c
|
|
@ -1640,7 +1640,7 @@ mouse_button_code_to_name(int code)
|
|||
static bool NOINLINE
|
||||
value_to_key_combos(struct context *ctx, int action, struct argv *argv,
|
||||
struct config_key_binding_list *bindings,
|
||||
enum config_key_binding_type type)
|
||||
enum key_binding_type type)
|
||||
{
|
||||
if (strcasecmp(ctx->value, "none") == 0) {
|
||||
remove_from_key_bindings_list(bindings, action, argv);
|
||||
|
|
@ -2002,7 +2002,7 @@ static bool NOINLINE
|
|||
resolve_key_binding_collisions(struct config *conf, const char *section_name,
|
||||
const char *const action_map[],
|
||||
struct config_key_binding_list *bindings,
|
||||
enum config_key_binding_type type)
|
||||
enum key_binding_type type)
|
||||
{
|
||||
bool ret = true;
|
||||
|
||||
|
|
|
|||
2
config.h
2
config.h
|
|
@ -49,7 +49,7 @@ struct config_binding_pipe {
|
|||
bool master_copy;
|
||||
};
|
||||
|
||||
enum config_key_binding_type {
|
||||
enum key_binding_type {
|
||||
KEY_BINDING,
|
||||
MOUSE_BINDING,
|
||||
};
|
||||
|
|
|
|||
|
|
@ -677,7 +677,7 @@ static void
|
|||
test_key_binding(struct context *ctx, bool (*parse_fun)(struct context *ctx),
|
||||
int action, int max_action, const char *const *map,
|
||||
struct config_key_binding_list *bindings,
|
||||
enum config_key_binding_type type)
|
||||
enum key_binding_type type)
|
||||
{
|
||||
xassert(map[action] != NULL);
|
||||
xassert(bindings->count == 0);
|
||||
|
|
@ -840,7 +840,7 @@ enum collision_test_mode {
|
|||
static void
|
||||
_test_binding_collisions(struct context *ctx,
|
||||
int max_action, const char *const *map,
|
||||
enum config_key_binding_type type,
|
||||
enum key_binding_type type,
|
||||
enum collision_test_mode test_mode)
|
||||
{
|
||||
struct config_key_binding *bindings_array =
|
||||
|
|
@ -937,7 +937,7 @@ _test_binding_collisions(struct context *ctx,
|
|||
static void
|
||||
test_binding_collisions(struct context *ctx,
|
||||
int max_action, const char *const *map,
|
||||
enum config_key_binding_type type)
|
||||
enum key_binding_type type)
|
||||
{
|
||||
_test_binding_collisions(ctx, max_action, map, type, FAIL_DIFFERENT_ACTION);
|
||||
_test_binding_collisions(ctx, max_action, map, type, FAIL_DIFFERENT_ARGV);
|
||||
|
|
|
|||
|
|
@ -101,7 +101,7 @@ enum bind_action_url {
|
|||
typedef tll(xkb_keycode_t) xkb_keycode_list_t;
|
||||
|
||||
struct key_binding {
|
||||
enum config_key_binding_type type;
|
||||
enum key_binding_type type;
|
||||
|
||||
int action; /* enum bind_action_* */
|
||||
char **pipe_argv;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue