Shorten key names

This commit is contained in:
Alex D. 2020-12-06 00:14:18 +00:00
parent 9aa38c23d2
commit a8ea266a79
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
1 changed files with 6 additions and 6 deletions

View File

@ -36,7 +36,7 @@ static Key keys_en[KEYS] = {
{0, XK_b, 1},
{0, XK_n, 1},
{0, XK_m, 1},
{"Bksp", XK_BackSpace, 2},
{"", XK_BackSpace, 2},
{0}, /* New row */
{"Ctrl", XK_Control_L, 1},
@ -46,7 +46,7 @@ static Key keys_en[KEYS] = {
{"", XK_Left, 1},
{"", XK_Right, 1},
{"Esc", XK_Escape, 1},
{" Enter", XK_Return, 2},
{"", XK_Return, 2},
};
#define OVERLAYS 197
@ -343,7 +343,7 @@ static Key keys_symbols[KEYS] = {
{"", XK_End, 1},
{"", XK_Next, 1},
{"", XK_Prior, 1},
{"Bksp", XK_BackSpace, 2},
{"", XK_BackSpace, 2},
{0}, /* New row */
{"Ctrl", XK_Control_L, 1},
@ -353,7 +353,7 @@ static Key keys_symbols[KEYS] = {
{"", XK_Left, 1},
{"", XK_Right, 1},
{"Esc", XK_Escape, 1},
{" Enter", XK_Return, 2},
{"", XK_Return, 2},
};
static Key keys_functions[KEYS] = {
@ -394,7 +394,7 @@ static Key keys_functions[KEYS] = {
{"", XK_Next, 1},
{"", XK_Prior, 1},
{"Tab", XK_Tab, 1},
{"Bksp", XK_BackSpace, 2},
{"", XK_BackSpace, 2},
{0}, /* New row */
{"Ctrl", XK_Control_L, 1},
@ -404,7 +404,7 @@ static Key keys_functions[KEYS] = {
{"", XK_Left, 1},
{"", XK_Right, 1},
{"Esc", XK_Escape, 1},
{" Enter", XK_Return, 2},
{"", XK_Return, 2},
};
#define LAYERS 3