File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3737 *
3838 * TODO:
3939 * - don't allow exiting Vim when a terminal is still running a job
40+ * - MS-Windows: no redraw for 'updatetime' #1915
4041 * - in bash mouse clicks are inserting characters.
4142 * - mouse scroll: when over other window, scroll that window.
4243 * - For the scrollback buffer store lines in the buffer, only attributes in
5455 * - do not store terminal window in viminfo. Or prefix term:// ?
5556 * - add a character in :ls output
5657 * - add 't' to mode()
58+ * - set 'filetype' to "terminal"?
5759 * - use win_del_lines() to make scroll-up efficient.
5860 * - implement term_setsize()
5961 * - add test for giving error for invalid 'termsize' value.
@@ -968,7 +970,7 @@ terminal_loop(void)
968970 /* We don't know if the job can handle CTRL-C itself or not, this
969971 * may kill the shell instead of killing the command running in the
970972 * shell. */
971- mch_stop_job (curbuf -> b_term -> tl_job , (char_u * )"quit" )
973+ mch_stop_job (curbuf -> b_term -> tl_job , (char_u * )"quit" );
972974#endif
973975
974976 if (c == (termkey == 0 ? Ctrl_W : termkey ))
Original file line number Diff line number Diff line change @@ -769,6 +769,8 @@ static char *(features[]) =
769769
770770static int included_patches [] =
771771{ /* Add new patch number below this line */
772+ /**/
773+ 845 ,
772774/**/
773775 844 ,
774776/**/
You can’t perform that action at this time.
0 commit comments