comparison src/proto/channel.pro @ 10240:175b1116f96a v8.0.0018

commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Sep 29 15:18:57 2016 +0200 patch 8.0.0018 Problem: When using ":sleep" channel input is not handled. Solution: When there is a channel check for input also when not in raw mode. Check every 100 msec.
author Christian Brabandt <cb@256bit.org>
date Thu, 29 Sep 2016 15:30:05 +0200
parents d709622a18c9
children a09db7a4afe0
comparison
equal deleted inserted replaced
10239:ebbc8d21105b 10240:175b1116f96a
2 void ch_logfile(char_u *fname, char_u *opt); 2 void ch_logfile(char_u *fname, char_u *opt);
3 int ch_log_active(void); 3 int ch_log_active(void);
4 void ch_log(channel_T *ch, char *msg); 4 void ch_log(channel_T *ch, char *msg);
5 void ch_logs(channel_T *ch, char *msg, char *name); 5 void ch_logs(channel_T *ch, char *msg, char *name);
6 channel_T *add_channel(void); 6 channel_T *add_channel(void);
7 int has_any_channel(void);
7 int channel_unref(channel_T *channel); 8 int channel_unref(channel_T *channel);
8 int free_unused_channels_contents(int copyID, int mask); 9 int free_unused_channels_contents(int copyID, int mask);
9 void free_unused_channels(int copyID, int mask); 10 void free_unused_channels(int copyID, int mask);
10 void channel_gui_register_all(void); 11 void channel_gui_register_all(void);
11 channel_T *channel_open(char *hostname, int port_in, int waittime, void (*nb_close_cb)(void)); 12 channel_T *channel_open(char *hostname, int port_in, int waittime, void (*nb_close_cb)(void));