1
0
forked from aniani/vim

patch 8.2.2383: focus escape sequences are not named

Problem:    Focus escape sequences are not named in ":set termcap" output.
Solution:   Add the names to the list. (closes #7718)
This commit is contained in:
Bram Moolenaar 2021-01-21 13:36:43 +01:00
parent b1f2857096
commit ccb47a2899
2 changed files with 4 additions and 0 deletions

View File

@ -2531,6 +2531,8 @@ static struct key_name_entry
{K_CURSORHOLD, (char_u *)"CursorHold"},
{K_IGNORE, (char_u *)"Ignore"},
{K_COMMAND, (char_u *)"Cmd"},
{K_FOCUSGAINED, (char_u *)"FocusGained"},
{K_FOCUSLOST, (char_u *)"FocusLost"},
{0, NULL}
// NOTE: When adding a long name update MAX_KEY_NAME_LEN.
};

View File

@ -750,6 +750,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
2383,
/**/
2382,
/**/