diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-12-16 14:41:10 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-12-16 14:41:10 +0000 |
commit | 0e6adf8a29d5c2c96c42cc7157f71bf22c2ad471 (patch) | |
tree | 5c0d0406aa228d3d547f0293a438e2d49f762d12 /runtime/doc/term.txt | |
parent | 6df0f2759d12ec0bc999b2963ecea4387a2bc516 (diff) | |
download | vim-git-0e6adf8a29d5c2c96c42cc7157f71bf22c2ad471.tar.gz |
Update runtime files
Diffstat (limited to 'runtime/doc/term.txt')
-rw-r--r-- | runtime/doc/term.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/runtime/doc/term.txt b/runtime/doc/term.txt index 3333a3ab6..8862d0a40 100644 --- a/runtime/doc/term.txt +++ b/runtime/doc/term.txt @@ -1,4 +1,4 @@ -*term.txt* For Vim version 8.2. Last change: 2021 Dec 04 +*term.txt* For Vim version 8.2. Last change: 2021 Dec 08 VIM REFERENCE MANUAL by Bram Moolenaar @@ -150,6 +150,8 @@ terminal that tmux is running in): > " Enable focus event tracking, see :help xterm-focus-event let &t_fe = "\<Esc>[?1004h" let &t_fd = "\<Esc>[?1004l" + execute "set <FocusGained>=\<Esc>[I" + execute "set <FocusLost>=\<Esc>[O" " Enable modified arrow keys, see :help arrow_modifiers execute "silent! set <xUp>=\<Esc>[@;*A" @@ -606,6 +608,8 @@ If your terminal does support this but Vim does not recognize the terminal, you may have to set the options yourself: > let &t_fe = "\<Esc>[?1004h" let &t_fd = "\<Esc>[?1004l" + execute "set <FocusGained>=\<Esc>[I" + execute "set <FocusLost>=\<Esc>[O" If this causes garbage to show when Vim starts up then it doesn't work. *termcap-colors* |