fix CTRL | SHIFT to just CTRL

This commit is contained in:
NunoSempere 2024-09-19 22:56:15 +02:00
parent fdf688cba2
commit 1438d3037a
3 changed files with 3 additions and 3 deletions

View File

@ -135,7 +135,7 @@ static struct {
{ CTRL, KEY(f), show_finder }, { CTRL, KEY(f), show_finder },
{ CTRL, KEY(n), finder_next }, { CTRL, KEY(n), finder_next },
{ CTRL, KEY(N), finder_prev }, { CTRL, KEY(N), finder_prev },
{ CTRL | SFT, KEY(F), filter }, { CTRL, KEY(F), filter },
{ CTRL, KEY(Up), halve_window }, { CTRL, KEY(Up), halve_window },
{ CTRL, KEY(Down), rebig_window }, { CTRL, KEY(Down), rebig_window },
{ CTRL, KEY(p), prettify }, { CTRL, KEY(p), prettify },

View File

@ -1,7 +1,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#define STYLE_N 9140 + 1000 #define STYLE_N 9224 + 1000
void read_style_js(char* string) void read_style_js(char* string)
{ {

View File

@ -1,5 +1,5 @@
#pragma once #pragma once
#define STYLE_N 9140 + 1000 #define STYLE_N 9224 + 1000
void read_style_js(char* string); void read_style_js(char* string);