mirror of
https://github.com/neovim/neovim
synced 2025-07-16 09:11:51 +00:00
terminal.c: temporary fix for incorrect paste handling
This commit is contained in:
@ -411,6 +411,10 @@ static int terminal_execute(VimState *state, int key)
|
|||||||
apply_autocmds(EVENT_FOCUSLOST, NULL, NULL, false, curbuf);
|
apply_autocmds(EVENT_FOCUSLOST, NULL, NULL, false, curbuf);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
// Temporary fix until paste events gets implemented
|
||||||
|
case K_PASTE:
|
||||||
|
break;
|
||||||
|
|
||||||
case K_LEFTMOUSE:
|
case K_LEFTMOUSE:
|
||||||
case K_LEFTDRAG:
|
case K_LEFTDRAG:
|
||||||
case K_LEFTRELEASE:
|
case K_LEFTRELEASE:
|
||||||
|
Reference in New Issue
Block a user