From abd3e09c5aa81440b2233a58730fe1ba0b3ce2f2 Mon Sep 17 00:00:00 2001 From: Jakub Sobczak Date: Tue, 8 Sep 2020 15:15:42 +0200 Subject: [PATCH] fix not-existing Floaterm wintype option --- keys/which-key.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keys/which-key.vim b/keys/which-key.vim index 30e6703a..06b66fda 100644 --- a/keys/which-key.vim +++ b/keys/which-key.vim @@ -230,7 +230,7 @@ let g:which_key_map.l = { " t is for terminal let g:which_key_map.t = { \ 'name' : '+terminal' , - \ ';' : [':FloatermNew --wintype=popup --height=6' , 'terminal'], + \ ';' : [':FloatermNew --wintype=normal --height=6' , 'terminal'], \ 'f' : [':FloatermNew fzf' , 'fzf'], \ 'g' : [':FloatermNew lazygit' , 'git'], \ 'd' : [':FloatermNew lazydocker' , 'docker'],