summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Chiarulli <[email protected]>2020-09-08 10:51:16 -0400
committerGitHub <[email protected]>2020-09-08 10:51:16 -0400
commit2d2162a48162a784a41c4c32e9c301cdf5cf7252 (patch)
tree8f3cbe54bbb61ed0faf9ca9c88d7bc217c0dd9fb
parent4625145d0278d4a039e55c433af9916d93e7846a (diff)
parentabd3e09c5aa81440b2233a58730fe1ba0b3ce2f2 (diff)
Merge pull request #53 from sobelek/master
fix not-existing Floaterm wintype option
-rw-r--r--keys/which-key.vim2
1 files changed, 1 insertions, 1 deletions
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'],