diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-05-09 18:59:31 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-05-09 18:59:31 +0200 |
commit | d4aa83af1d691fdabbc8e6aab36db2c96ea4d4b6 (patch) | |
tree | b2388947080bf130e2fcb7da283d91895e3ae63a /src/proto/os_unix.pro | |
parent | eae1b91fea74842000fc055afc74fe2e7934c6ee (diff) | |
download | vim-git-d4aa83af1d691fdabbc8e6aab36db2c96ea4d4b6.tar.gz |
patch 8.1.1307: cannot reconnect to the X server after it restartedv8.1.1307
Problem: Cannot reconnect to the X server after it restarted.
Solution: Add the :xrestore command. (Adrian Kocis, closes #844)
Diffstat (limited to 'src/proto/os_unix.pro')
-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 0117b1ea1..0e7c609f3 100644 --- a/src/proto/os_unix.pro +++ b/src/proto/os_unix.pro @@ -13,6 +13,7 @@ void reset_signals(void); int vim_handle_signal(int sig); int mch_check_win(int argc, char **argv); int mch_input_isatty(void); +void ex_xrestore(exarg_T *eap); int mch_can_restore_title(void); int mch_can_restore_icon(void); void mch_settitle(char_u *title, char_u *icon); |