mirror of
https://github.com/neovim/neovim.git
synced 2025-09-17 16:58:17 +00:00
vim-patch:8.0.0208
Problem: Internally used commands for CTRL-Z and mouse click end up in
history. (Matthew Malcomson)
Solution: Use do_cmdline_cmd() instead of stuffing them in the readahead
buffer. (James McCoy, closes vim/vim#1395)
25b0e6b701
Closes #5966
Closes #5967
This commit is contained in:
@@ -800,7 +800,7 @@ static int insert_handle_key(InsertState *s)
|
|||||||
if (!p_im) {
|
if (!p_im) {
|
||||||
goto normalchar; // insert CTRL-Z as normal char
|
goto normalchar; // insert CTRL-Z as normal char
|
||||||
}
|
}
|
||||||
stuffReadbuff((char_u *)":st\r");
|
do_cmdline_cmd("stop");
|
||||||
s->c = Ctrl_O;
|
s->c = Ctrl_O;
|
||||||
// FALLTHROUGH
|
// FALLTHROUGH
|
||||||
|
|
||||||
|
@@ -2699,9 +2699,9 @@ do_mouse (
|
|||||||
if (State & INSERT)
|
if (State & INSERT)
|
||||||
stuffcharReadbuff(Ctrl_O);
|
stuffcharReadbuff(Ctrl_O);
|
||||||
if (curwin->w_llist_ref == NULL) /* quickfix window */
|
if (curwin->w_llist_ref == NULL) /* quickfix window */
|
||||||
stuffReadbuff((char_u *)":.cc\n");
|
do_cmdline_cmd(".cc");
|
||||||
else /* location list window */
|
else /* location list window */
|
||||||
stuffReadbuff((char_u *)":.ll\n");
|
do_cmdline_cmd(".ll");
|
||||||
got_click = false; /* ignore drag&release now */
|
got_click = false; /* ignore drag&release now */
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user