diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-09-19 07:59:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-19 07:59:09 +0200 |
commit | 8b60253ce747183a1896a8f0057519a1e2e517a1 (patch) | |
tree | d69fed82e725c2ec580cd511e4958a8d5967faae /src/nvim/ex_getln.c | |
parent | d0401e827bdeff99fc6a0fa6599cad2970bd6136 (diff) | |
download | rneovim-8b60253ce747183a1896a8f0057519a1e2e517a1.tar.gz rneovim-8b60253ce747183a1896a8f0057519a1e2e517a1.tar.bz2 rneovim-8b60253ce747183a1896a8f0057519a1e2e517a1.zip |
cleanup/TUI: remove old unused code #9013
- Checks for ECHOE, ICANON were left over from Vim code. We already
reference the symbols elsewhere without checking.
- newline_on_exit, intr_char: Both are vestigial remnants of Vim 4.x,
not implemented in Nvim. intr_char is a termios/stty feature, it's
probably not useful because users have other ways to configure their
terminals.
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r-- | src/nvim/ex_getln.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c index 92c35ad3a0..8654c9d023 100644 --- a/src/nvim/ex_getln.c +++ b/src/nvim/ex_getln.c @@ -3354,9 +3354,6 @@ void cmdline_paste_str(char_u *s, int literally) } if (cv == Ctrl_V || c == ESC || c == Ctrl_C || c == CAR || c == NL || c == Ctrl_L -#ifdef UNIX - || c == intr_char -#endif || (c == Ctrl_BSL && *s == Ctrl_N)) { stuffcharReadbuff(Ctrl_V); } |