diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-08-13 20:06:18 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-08-13 20:06:18 +0200 |
commit | 4f44b886840a90a50575204bc29f72ef309cfaf6 (patch) | |
tree | f4a8bfe4b58442ecf4730d55f87c5aed2078241d /src/proto | |
parent | 69905d108be4af86c2d2a9224e2c588723276dc9 (diff) | |
download | vim-git-4f44b886840a90a50575204bc29f72ef309cfaf6.tar.gz |
patch 8.0.0932: terminal may not use right characters for BS and Enterv8.0.0932
Problem: Terminal may not use right characters for BS and Enter.
Solution: Get the characters from the tty.
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/os_unix.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/os_unix.pro b/src/proto/os_unix.pro index 20765c06f..80539d34d 100644 --- a/src/proto/os_unix.pro +++ b/src/proto/os_unix.pro @@ -50,6 +50,7 @@ void mch_free_mem(void); void mch_exit(int r); void mch_settmode(int tmode); void get_stty(void); +int get_tty_info(int fd, ttyinfo_T *info); void mch_setmouse(int on); void check_mouse_termcode(void); int mch_screenmode(char_u *arg); |