From 1438d3037ab0278477c931ee90f7d2afc5dbb972 Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Thu, 19 Sep 2024 22:56:15 +0200 Subject: [PATCH] fix CTRL | SHIFT to just CTRL --- config.h | 2 +- plugins/style/style.c | 2 +- plugins/style/style.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config.h b/config.h index 5f2c879..4ff1ee9 100644 --- a/config.h +++ b/config.h @@ -135,7 +135,7 @@ static struct { { CTRL, KEY(f), show_finder }, { CTRL, KEY(n), finder_next }, { CTRL, KEY(N), finder_prev }, - { CTRL | SFT, KEY(F), filter }, + { CTRL, KEY(F), filter }, { CTRL, KEY(Up), halve_window }, { CTRL, KEY(Down), rebig_window }, { CTRL, KEY(p), prettify }, diff --git a/plugins/style/style.c b/plugins/style/style.c index da27c40..c54e437 100644 --- a/plugins/style/style.c +++ b/plugins/style/style.c @@ -1,7 +1,7 @@ #include #include #include -#define STYLE_N 9140 + 1000 +#define STYLE_N 9224 + 1000 void read_style_js(char* string) { diff --git a/plugins/style/style.h b/plugins/style/style.h index da4b2d0..e29cfcd 100644 --- a/plugins/style/style.h +++ b/plugins/style/style.h @@ -1,5 +1,5 @@ #pragma once -#define STYLE_N 9140 + 1000 +#define STYLE_N 9224 + 1000 void read_style_js(char* string);