diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-01-14 17:35:21 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-01-14 17:35:21 +0100 |
commit | 681fc3fa782e99fe69ed2c83c3e29109d2d61e1a (patch) | |
tree | 7aa5986843ee75f7a1337c18b022cf22841b00c9 /src/optiondefs.h | |
parent | 6601b62943a19d4f8818c3638440663d67a17b6a (diff) | |
download | vim-git-681fc3fa782e99fe69ed2c83c3e29109d2d61e1a.tar.gz |
patch 8.2.2345: no focus events in a terminalv8.2.2345
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)
Diffstat (limited to 'src/optiondefs.h')
-rw-r--r-- | src/optiondefs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/optiondefs.h b/src/optiondefs.h index 9afa84df5..6cea0177c 100644 --- 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) |