diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-03-31 11:43:02 -0700 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-03-31 11:43:02 -0700 |
commit | 4b8f27338f1a4f393b1a6c6e219a073ca9bf39a7 (patch) | |
tree | 5cfce5a21dc805b465f7d83943135ef466174efd | |
parent | a9e0d734d7b4aa6e6cd77e1834bbc7c6b59c716c (diff) | |
parent | 14c9b30f2e9bc8d4081e787ab2072a9803732675 (diff) | |
download | rneovim-4b8f27338f1a4f393b1a6c6e219a073ca9bf39a7.tar.gz rneovim-4b8f27338f1a4f393b1a6c6e219a073ca9bf39a7.tar.bz2 rneovim-4b8f27338f1a4f393b1a6c6e219a073ca9bf39a7.zip |
Merge pull request #4510 from bfredl/termfix
terminal.c: temporary fix for incorrect paste handling
-rw-r--r-- | src/nvim/terminal.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/terminal.c b/src/nvim/terminal.c index 42fd81f643..63a7e20880 100644 --- a/src/nvim/terminal.c +++ b/src/nvim/terminal.c @@ -411,6 +411,10 @@ static int terminal_execute(VimState *state, int key) apply_autocmds(EVENT_FOCUSLOST, NULL, NULL, false, curbuf); break; + // Temporary fix until paste events gets implemented + case K_PASTE: + break; + case K_LEFTMOUSE: case K_LEFTDRAG: case K_LEFTRELEASE: |