2017-07-07 11:54:15 +02:00
|
|
|
/* terminal.c */
|
|
|
|
void ex_terminal(exarg_T *eap);
|
2017-07-28 21:51:57 +02:00
|
|
|
void free_terminal(buf_T *buf);
|
2017-07-16 13:48:22 +02:00
|
|
|
void write_to_term(buf_T *buffer, char_u *msg, channel_T *channel);
|
2017-07-28 21:51:57 +02:00
|
|
|
int terminal_loop(void);
|
|
|
|
void term_channel_closed(channel_T *ch);
|
|
|
|
int term_update_window(win_T *wp);
|
2017-07-24 21:44:43 +02:00
|
|
|
char_u *term_get_status_text(term_T *term);
|
2017-07-27 22:14:59 +02:00
|
|
|
int set_ref_in_term(int copyID);
|
2017-07-07 11:54:15 +02:00
|
|
|
/* vim: set ft=c : */
|