X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=config.def.h;h=d2c547c3105c877f9cac8b8eb6b8c510ae5f41fc;hb=2251f6465ae48aaa012fd686d6dcc4d3f41f77fe;hp=342c9d40efe0f7960a57edafb129efc50babf1f4;hpb=78b04865fb5c8cb841e646058f9a24e7ec9094d2;p=st.git diff --git a/config.def.h b/config.def.h index 342c9d4..d2c547c 100644 --- a/config.def.h +++ b/config.def.h @@ -65,6 +65,15 @@ static int bellvolume = 0; /* default TERM value */ static char termname[] = "st-256color"; +/* + * spaces per tab + * + * When you are changing this value, don't forget to adapt the »it« value in + * the st.info and appropriately install the st.info in the environment where + * you use this st version. + * + * it#$tabspaces, + */ static unsigned int tabspaces = 8; /* Terminal colors (16 first used in escape sequence) */ @@ -108,9 +117,10 @@ static unsigned int defaultrcs = 257; /* * Default shape of cursor - * 2: Block - * 4: Underline - * 6: IBeam + * 2: Block ("█") + * 4: Underline ("_") + * 6: Bar ("|") + * 7: Snowman ("☃") */ static unsigned int cursorshape = 2; @@ -133,7 +143,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" }, @@ -302,6 +312,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}, @@ -416,3 +427,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{|}~"; +