From ccb47a2899d9f8076dad0f8348c057450febf32b Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 21 Jan 2021 13:36:43 +0100 Subject: 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) --- src/misc2.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/misc2.c') diff --git a/src/misc2.c b/src/misc2.c index 52e0499bc..5a6d86352 100644 --- a/src/misc2.c +++ b/src/misc2.c @@ -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. }; -- cgit v1.2.1