From d87390934e161ad2ae09b4dc37f4b529a84caa92 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sun, 28 Aug 2016 19:26:47 +0900 Subject: [PATCH] [neovim] Do not resize if the size of the screen has changed Related #642 --- plugin/fzf.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/fzf.vim b/plugin/fzf.vim index 4b554e92..8e3859dd 100644 --- a/plugin/fzf.vim +++ b/plugin/fzf.vim @@ -467,7 +467,7 @@ function! s:execute_term(dict, command, temps) abort execute 'bd!' self.buf endif - if &lines <= self.lines && &columns <= self.columns && s:getpos() == self.ppos + if &lines == self.lines && &columns == self.columns && s:getpos() == self.ppos execute self.winrest endif