mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.0.0845: MS-Windows: missing semicolon in terminal code
Problem: MS-Windows: missing semicolon in terminal code. Solution: Add it. (Naruhiko Nishino, closes #1923)
This commit is contained in:
parent
e0ab979fa7
commit
d8dc179937
@ -37,6 +37,7 @@
|
|||||||
*
|
*
|
||||||
* TODO:
|
* TODO:
|
||||||
* - don't allow exiting Vim when a terminal is still running a job
|
* - don't allow exiting Vim when a terminal is still running a job
|
||||||
|
* - MS-Windows: no redraw for 'updatetime' #1915
|
||||||
* - in bash mouse clicks are inserting characters.
|
* - in bash mouse clicks are inserting characters.
|
||||||
* - mouse scroll: when over other window, scroll that window.
|
* - mouse scroll: when over other window, scroll that window.
|
||||||
* - For the scrollback buffer store lines in the buffer, only attributes in
|
* - For the scrollback buffer store lines in the buffer, only attributes in
|
||||||
@ -54,6 +55,7 @@
|
|||||||
* - do not store terminal window in viminfo. Or prefix term:// ?
|
* - do not store terminal window in viminfo. Or prefix term:// ?
|
||||||
* - add a character in :ls output
|
* - add a character in :ls output
|
||||||
* - add 't' to mode()
|
* - add 't' to mode()
|
||||||
|
* - set 'filetype' to "terminal"?
|
||||||
* - use win_del_lines() to make scroll-up efficient.
|
* - use win_del_lines() to make scroll-up efficient.
|
||||||
* - implement term_setsize()
|
* - implement term_setsize()
|
||||||
* - add test for giving error for invalid 'termsize' value.
|
* - add test for giving error for invalid 'termsize' value.
|
||||||
@ -968,7 +970,7 @@ terminal_loop(void)
|
|||||||
/* We don't know if the job can handle CTRL-C itself or not, this
|
/* We don't know if the job can handle CTRL-C itself or not, this
|
||||||
* may kill the shell instead of killing the command running in the
|
* may kill the shell instead of killing the command running in the
|
||||||
* shell. */
|
* shell. */
|
||||||
mch_stop_job(curbuf->b_term->tl_job, (char_u *)"quit")
|
mch_stop_job(curbuf->b_term->tl_job, (char_u *)"quit");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (c == (termkey == 0 ? Ctrl_W : termkey))
|
if (c == (termkey == 0 ? Ctrl_W : termkey))
|
||||||
|
@ -769,6 +769,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
845,
|
||||||
/**/
|
/**/
|
||||||
844,
|
844,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user