Skip to content
Snippets Groups Projects
Unverified Commit d8739093 authored by Junegunn Choi's avatar Junegunn Choi
Browse files

[neovim] Do not resize if the size of the screen has changed

Related #642
parent 411ec2e5
No related branches found
No related tags found
No related merge requests found
...@@ -467,7 +467,7 @@ function! s:execute_term(dict, command, temps) abort ...@@ -467,7 +467,7 @@ function! s:execute_term(dict, command, temps) abort
execute 'bd!' self.buf execute 'bd!' self.buf
endif 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 execute self.winrest
endif endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment