From: Daniel Liu Date: Wed, 26 Aug 2020 04:14:01 +0000 (-0400) Subject: config X-Git-Url: https://git.danieliu.xyz/?p=st.git;a=commitdiff_plain;h=181c9f3ba9a0d9bb36b372f3dc04c966a95f491e config --- 181c9f3ba9a0d9bb36b372f3dc04c966a95f491e diff --cc config.def.h index 47591cc,d326cc0..399ef1f --- a/config.def.h +++ b/config.def.h @@@ -127,40 -127,19 +127,40 @@@ static const char *colorname[] = * Default colors (colorname index) * foreground, background, cursor, reverse cursor */ - unsigned int defaultfg = 15; + unsigned int defaultfg = 7; unsigned int defaultbg = 0; - static unsigned int defaultcs = 256; + static unsigned int defaultcs = 15; static unsigned int defaultrcs = 257; +unsigned int const currentBg = 0, buffSize = 2048; +/// [Vim Browse] Colors for search results currently on screen. +unsigned int const highlightBg = 9, highlightFg = 15; +char const wDelS[] = "!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~", wDelL[] = " \t"; +char *nmKeys [] = { ///< Shortcusts executed in normal mode + "R/Building\nN", "r/Building\n", "X/juli@machine\nN", "x/juli@machine\n", + "Q?[Leaving vim, starting execution]\n","F/: error:\nN", "f/: error:\n", "DQf" +}; +unsigned int const amountNmKeys = sizeof(nmKeys) / sizeof(*nmKeys); +/// Style of the {command, search} string shown in the right corner (y,v,V,/) +Glyph styleSearch = {' ', ATTR_ITALIC | ATTR_BOLD_FAINT, 7, 16}; +Glyph style[] = {{' ',ATTR_ITALIC|ATTR_FAINT,15,16}, {' ',ATTR_ITALIC,232,11}, + {' ', ATTR_ITALIC, 232, 4}, {' ', ATTR_ITALIC, 232, 12}}; + /* - * Default shape of cursor - * 2: Block ("█") - * 4: Underline ("_") - * 6: Bar ("|") - * 7: Snowman ("☃") + * https://invisible-island.net/xterm/ctlseqs/ctlseqs.html#h4-Functions-using-CSI-_-ordered-by-the-final-character-lparen-s-rparen:CSI-Ps-SP-q.1D81 + * Default style of cursor + * 0: Blinking block + * 1: Blinking block (default) + * 2: Steady block ("█") + * 3: Blinking underline + * 4: Steady underline ("_") + * 5: Blinking bar + * 6: Steady bar ("|") + * 7: Blinking st cursor + * 8: Steady st cursor */ -static unsigned int cursorshape = 2; +static unsigned int cursorstyle = 1; +static Rune stcursor = 0x2603; /* snowman (U+2603) */ /* * Default columns and rows numbers