apply patch st-meta-vim-full-20210425-43a395a-8.4.patch
This commit is contained in:
16
config.def.h
16
config.def.h
@@ -133,6 +133,21 @@ unsigned int defaultfg = 258;
|
||||
unsigned int defaultbg = 259;
|
||||
unsigned int defaultcs = 256;
|
||||
static unsigned int defaultrcs = 257;
|
||||
unsigned int const currentBg = 6, buffSize = 2048;
|
||||
/// Enable double / triple click yanking / selection of word / line.
|
||||
int const mouseYank = 1, mouseSelect = 0;
|
||||
/// [Vim Browse] Colors for search results currently on screen.
|
||||
unsigned int const highlightBg = 160, 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
|
||||
@@ -201,6 +216,7 @@ static Shortcut shortcuts[] = {
|
||||
{ TERMMOD, XK_Y, selpaste, {.i = 0} },
|
||||
{ ShiftMask, XK_Insert, selpaste, {.i = 0} },
|
||||
{ TERMMOD, XK_Num_Lock, numlock, {.i = 0} },
|
||||
{ MODKEY, XK_c, normalMode, {.i = 0} },
|
||||
};
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user