diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-05-10 18:05:56 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-05-10 18:05:56 +0200 |
commit | 56bc8e299cdae1b4606897749ef54a0161381a4a (patch) | |
tree | ecbd0f7ec5a65989ceefe71003fb17b45d726161 /src/proto/ex_cmds2.pro | |
parent | b9464821901623f983528acaed9e4dc2cea7387b (diff) | |
download | vim-git-56bc8e299cdae1b4606897749ef54a0161381a4a.tar.gz |
patch 8.0.1810: buffer of a terminal only updated in Terminal-Normal modev8.0.1810
Problem: Buffer of a terminal only updated in Terminal-Normal mode.
Solution: Copy the terminal window content to the buffer when in
Terminal-Job mode.
Diffstat (limited to 'src/proto/ex_cmds2.pro')
-rw-r--r-- | src/proto/ex_cmds2.pro | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/proto/ex_cmds2.pro b/src/proto/ex_cmds2.pro index a7d19d768..ac9b291e5 100644 --- a/src/proto/ex_cmds2.pro +++ b/src/proto/ex_cmds2.pro @@ -1,5 +1,5 @@ /* ex_cmds2.c */ -int has_watchexpr (void); +int has_watchexpr(void); void do_debug(char_u *cmd); void ex_debug(exarg_T *eap); void dbg_check_breakpoint(exarg_T *eap); @@ -19,6 +19,7 @@ float_T profile_float(proftime_T *tm); void profile_setlimit(long msec, proftime_T *tm); int profile_passed_limit(proftime_T *tm); void profile_zero(proftime_T *tm); +long proftime_time_left(proftime_T *due, proftime_T *now); timer_T *create_timer(long msec, int repeat); long check_due_timer(void); timer_T *find_timer(long id); |