comparison src/proto/terminal.pro @ 22226:4ed106deb772 v8.2.1662

patch 8.2.1662: :mksession does not restore shared terminal buffer properly Commit: https://github.com/vim/vim/commit/0e655111e9dbdbdf69fee1b199f2b9c355bf4a10 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Sep 11 20:36:36 2020 +0200 patch 8.2.1662: :mksession does not restore shared terminal buffer properly Problem: :mksession does not restore shared terminal buffer properly. Solution: Keep a hashtab with terminal buffers. (Rob Pilling, closes https://github.com/vim/vim/issues/6930)
author Bram Moolenaar <Bram@vim.org>
date Fri, 11 Sep 2020 20:45:04 +0200
parents 2142fb624658
children 1a658c5eb326
comparison
equal deleted inserted replaced
22225:4d538e35eebd 22226:4ed106deb772
1 /* terminal.c */ 1 /* terminal.c */
2 void init_job_options(jobopt_T *opt); 2 void init_job_options(jobopt_T *opt);
3 buf_T *term_start(typval_T *argvar, char **argv, jobopt_T *opt, int flags); 3 buf_T *term_start(typval_T *argvar, char **argv, jobopt_T *opt, int flags);
4 void ex_terminal(exarg_T *eap); 4 void ex_terminal(exarg_T *eap);
5 int term_write_session(FILE *fd, win_T *wp); 5 int term_write_session(FILE *fd, win_T *wp, hashtab_T *terminal_bufs);
6 int term_should_restore(buf_T *buf); 6 int term_should_restore(buf_T *buf);
7 void free_terminal(buf_T *buf); 7 void free_terminal(buf_T *buf);
8 void free_unused_terminals(void); 8 void free_unused_terminals(void);
9 void write_to_term(buf_T *buffer, char_u *msg, channel_T *channel); 9 void write_to_term(buf_T *buffer, char_u *msg, channel_T *channel);
10 int term_job_running(term_T *term); 10 int term_job_running(term_T *term);