diff src/optiondefs.h @ 23606:f98939164e91 v8.2.2345

patch 8.2.2345: no focus events in a terminal Commit: https://github.com/vim/vim/commit/681fc3fa782e99fe69ed2c83c3e29109d2d61e1a Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 14 17:35:21 2021 +0100 patch 8.2.2345: no focus events in a terminal Problem: No focus events in a terminal. Solution: Add the t_fd and t_fe termcap entries and implement detecting focus events. (Hayaki Saito, Magnus Gro?, closes #7673, closes #609, closes #5526)
author Bram Moolenaar <Bram@vim.org>
date Thu, 14 Jan 2021 17:45:05 +0100
parents 35921b7fc07a
children bfc1ae959d9d
line wrap: on
line diff
--- a/src/optiondefs.h
+++ b/src/optiondefs.h
@@ -2957,6 +2957,8 @@ static struct vimoption options[] =
     p_term("t_EC", T_CEC)
     p_term("t_EI", T_CEI)
     p_term("t_fs", T_FS)
+    p_term("t_fd", T_FD)
+    p_term("t_fe", T_FE)
     p_term("t_GP", T_CGP)
     p_term("t_IE", T_CIE)
     p_term("t_IS", T_CIS)