Added my own escape code for Ctrl+;

This commit is contained in:
Andreev Gregory 2025-03-01 22:26:26 +03:00
parent 8cb091da1b
commit 3277b150ad

View File

@ -5,11 +5,12 @@
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
static char *font = "Liberation Mono:pixelsize=12:antialias=true:autohint=true";
static char *font = "Liberation Mono:pixelsize=14:antialias=true:autohint=true";
/* Spare fonts */
static char *font2[] = {
/* "Inconsolata for Powerline:pixelsize=12:antialias=true:autohint=true", */
/* "Hack Nerd Font Mono:pixelsize=11:antialias=true:autohint=true", */
// "Inconsolata for Powerline:pixelsize=14:antialias=true:autohint=true"
"Inconsolata for Powerline:pixelsize=14:antialias=true:autohint=true",
// "Hack Nerd Font Mono:pixelsize=11:antialias=true:autohint=true",
};
static int borderpx = 2;
@ -239,7 +240,7 @@ static Shortcut shortcuts[] = {
* If you want keys other than the X11 function keys (0xFD00 - 0xFFFF)
* to be mapped below, add them to this array.
*/
static KeySym mappedkeys[] = { -1 };
static KeySym mappedkeys[] = {';', -1 };
/*
* State bits to ignore when matching key or button events. By default,
@ -462,6 +463,8 @@ static Key key[] = {
{ XK_F33, XK_NO_MOD, "\033[20;5~", 0, 0},
{ XK_F34, XK_NO_MOD, "\033[21;5~", 0, 0},
{ XK_F35, XK_NO_MOD, "\033[23;5~", 0, 0},
// My custom keybindings
{ XK_semicolon, ControlMask, "\033[69;50S", 0, 0},
};
/*