2017-07-07 11:54:15 +02:00
|
|
|
/* terminal.c */
|
|
|
|
void ex_terminal(exarg_T *eap);
|
2017-07-17 23:20:24 +02:00
|
|
|
void free_terminal(term_T *term);
|
2017-07-16 13:48:22 +02:00
|
|
|
void write_to_term(buf_T *buffer, char_u *msg, channel_T *channel);
|
2017-07-16 20:13:26 +02:00
|
|
|
void terminal_loop(void);
|
2017-07-23 19:51:01 +02:00
|
|
|
void term_job_ended(job_T *job);
|
|
|
|
int term_job_running(buf_T *buf);
|
|
|
|
void term_update_window(win_T *wp);
|
2017-07-07 11:54:15 +02:00
|
|
|
/* vim: set ft=c : */
|