Skip to content

Commit ccb47a2

Browse files
committed
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)
1 parent b1f2857 commit ccb47a2

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/misc2.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2531,6 +2531,8 @@ static struct key_name_entry
25312531
{K_CURSORHOLD, (char_u *)"CursorHold"},
25322532
{K_IGNORE, (char_u *)"Ignore"},
25332533
{K_COMMAND, (char_u *)"Cmd"},
2534+
{K_FOCUSGAINED, (char_u *)"FocusGained"},
2535+
{K_FOCUSLOST, (char_u *)"FocusLost"},
25342536
{0, NULL}
25352537
// NOTE: When adding a long name update MAX_KEY_NAME_LEN.
25362538
};

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -750,6 +750,8 @@ static char *(features[]) =
750750

751751
static int included_patches[] =
752752
{ /* Add new patch number below this line */
753+
/**/
754+
2383,
753755
/**/
754756
2382,
755757
/**/

0 commit comments

Comments
 (0)