diff options
author | Scott Prager <splinterofchaos@gmail.com> | 2015-04-08 12:27:52 -0400 |
---|---|---|
committer | Scott Prager <splinterofchaos@gmail.com> | 2015-04-08 12:27:52 -0400 |
commit | e1bac3b84090d07afa669a8b79816c28813c605e (patch) | |
tree | c9594516a80bbba044c8097f0812ca713519cba4 /src/nvim/edit.c | |
parent | 5f98c3272577f8633da489769372d47c26c0a894 (diff) | |
parent | 8cac2eea751379e0195b5160f9d14d19f8866e71 (diff) | |
download | rneovim-e1bac3b84090d07afa669a8b79816c28813c605e.tar.gz rneovim-e1bac3b84090d07afa669a8b79816c28813c605e.tar.bz2 rneovim-e1bac3b84090d07afa669a8b79816c28813c605e.zip |
Merge pull request #2346 from splinterofchaos/fix-terminal
[RFC] terminal: Handle loss of focus in event loop.
Diffstat (limited to 'src/nvim/edit.c')
-rw-r--r-- | src/nvim/edit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/edit.c b/src/nvim/edit.c index ec0f136d8d..b860ce8898 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -246,7 +246,7 @@ edit ( ) { if (curbuf->terminal) { - terminal_enter(curbuf->terminal, true); + terminal_enter(true); return false; } |