diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2017-11-17 22:24:01 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-11-17 22:24:01 +0100 |
| commit | 07931ed1c8cc749222a513cba5bdf300067646bc (patch) | |
| tree | f0019d8b27aba01ed70e6c15674a1c634c77b96f /src/nvim/tui/input.c | |
| parent | ee031eb5256bb83e0d6add2bae6fd943a4186ffe (diff) | |
| download | rneovim-07931ed1c8cc749222a513cba5bdf300067646bc.tar.gz rneovim-07931ed1c8cc749222a513cba5bdf300067646bc.tar.bz2 rneovim-07931ed1c8cc749222a513cba5bdf300067646bc.zip | |
tui: 'guicursor': use DECSCUSR for xterm-likes (#7576)
Anything claiming to be an xterm gets DECSCUSR. This is the only
reasonable choice unless/until we get more reliable detection (#7490).
ref #6997
closes #7550
Diffstat (limited to 'src/nvim/tui/input.c')
| -rw-r--r-- | src/nvim/tui/input.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/tui/input.c b/src/nvim/tui/input.c index 8bb5971bd4..8e08b77b00 100644 --- a/src/nvim/tui/input.c +++ b/src/nvim/tui/input.c @@ -14,8 +14,6 @@ #include "nvim/event/rstream.h" #define PASTETOGGLE_KEY "<Paste>" -#define FOCUSGAINED_KEY "<FocusGained>" -#define FOCUSLOST_KEY "<FocusLost>" #define KEY_BUFFER_SIZE 0xfff #ifdef INCLUDE_GENERATED_DECLARATIONS |