Bram Moolenaar | e4f25e4 | 2017-07-07 11:54:15 +0200 | [diff] [blame] | 1 | /* terminal.c */ |
| 2 | void ex_terminal(exarg_T *eap); |
Bram Moolenaar | d85f271 | 2017-07-28 21:51:57 +0200 | [diff] [blame] | 3 | void free_terminal(buf_T *buf); |
Bram Moolenaar | cb8bbe9 | 2017-07-16 13:48:22 +0200 | [diff] [blame] | 4 | void write_to_term(buf_T *buffer, char_u *msg, channel_T *channel); |
Bram Moolenaar | d85f271 | 2017-07-28 21:51:57 +0200 | [diff] [blame] | 5 | int terminal_loop(void); |
| 6 | void term_channel_closed(channel_T *ch); |
| 7 | int term_update_window(win_T *wp); |
Bram Moolenaar | 63ecdda | 2017-07-28 22:29:35 +0200 | [diff] [blame] | 8 | int term_is_finished(buf_T *buf); |
| 9 | void term_change_in_curbuf(void); |
| 10 | int term_get_attr(buf_T *buf, linenr_T lnum, int col); |
Bram Moolenaar | 2155441 | 2017-07-24 21:44:43 +0200 | [diff] [blame] | 11 | char_u *term_get_status_text(term_T *term); |
Bram Moolenaar | a2c45a1 | 2017-07-27 22:14:59 +0200 | [diff] [blame] | 12 | int set_ref_in_term(int copyID); |
Bram Moolenaar | e4f25e4 | 2017-07-07 11:54:15 +0200 | [diff] [blame] | 13 | /* vim: set ft=c : */ |