X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=config.def.h;h=0070635af8f536c10a74bb6a611940adb65a5a76;hb=235b438e689e1fab677ee7e6ee53491867c16b9d;hp=860ce3d68781d4232b3dd9030ac87cc86e75c499;hpb=a2a60f0a2ce33dbd4ef07aaa4a914391481fa1de;p=st.git diff --git a/config.def.h b/config.def.h index 860ce3d..0070635 100644 --- a/config.def.h +++ b/config.def.h @@ -134,7 +134,7 @@ static unsigned int defaultunderline = 7; * Internal mouse shortcuts. * Beware that overloading Button1 will disable the selection. */ -static Mousekey mshortcuts[] = { +static MouseShortcut mshortcuts[] = { /* button mask string */ { Button4, XK_ANY_MOD, "\031" }, { Button5, XK_ANY_MOD, "\005" }, @@ -303,6 +303,7 @@ static Key key[] = { { XK_Delete, XK_ANY_MOD, "\033[P", -1, 0, 0}, { XK_Delete, XK_ANY_MOD, "\033[3~", +1, 0, 0}, { XK_BackSpace, XK_NO_MOD, "\177", 0, 0, 0}, + { XK_BackSpace, Mod1Mask, "\033\177", 0, 0, 0}, { XK_Home, ShiftMask, "\033[2J", 0, -1, 0}, { XK_Home, ShiftMask, "\033[1;2H", 0, +1, 0}, { XK_Home, XK_ANY_MOD, "\033[H", 0, -1, 0}, @@ -417,3 +418,12 @@ static uint selmasks[] = { [SEL_RECTANGULAR] = Mod1Mask, }; +/* + * Printable characters in ASCII, used to estimate the advance width + * of single wide characters. + */ +static char ascii_printable[] = + " !\"#$%&'()*+,-./0123456789:;<=>?" + "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_" + "`abcdefghijklmnopqrstuvwxyz{|}~"; +