diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-08-11 21:51:23 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-08-11 21:51:23 +0200 |
commit | 08d384ff3aa0366c18fb87ed215b1b4bdf9b1745 (patch) | |
tree | 82bc9560e86e147774f27b096124968385c07434 /src/proto/channel.pro | |
parent | 89e06c807ac63030dd163092e1c58f9ce350aeee (diff) | |
download | vim-git-08d384ff3aa0366c18fb87ed215b1b4bdf9b1745.tar.gz |
patch 8.0.0908: cannot set terminal size with optionsv8.0.0908
Problem: Cannot set terminal size with options.
Solution: Add "term_rows", "term_cols" and "vertical".
Diffstat (limited to 'src/proto/channel.pro')
-rw-r--r-- | src/proto/channel.pro | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/proto/channel.pro b/src/proto/channel.pro index 6cd099ef4..3bbbf2866 100644 --- a/src/proto/channel.pro +++ b/src/proto/channel.pro @@ -51,15 +51,15 @@ ch_mode_T channel_get_mode(channel_T *channel, ch_part_T part); int channel_get_timeout(channel_T *channel, ch_part_T part); void clear_job_options(jobopt_T *opt); void free_job_options(jobopt_T *opt); -int get_job_options(typval_T *tv, jobopt_T *opt, int supported); +int get_job_options(typval_T *tv, jobopt_T *opt, int supported, int supported2); channel_T *get_channel_arg(typval_T *tv, int check_open, int reading, ch_part_T part); -job_T *job_alloc(void); -void job_cleanup(job_T *job); void job_free_all(void); +void job_cleanup(job_T *job); int set_ref_in_job(int copyID); void job_unref(job_T *job); int free_unused_jobs_contents(int copyID, int mask); void free_unused_jobs(int copyID, int mask); +job_T *job_alloc(void); void job_set_options(job_T *job, jobopt_T *opt); void job_stop_on_exit(void); int has_pending_job(void); |