mrjones2014 / smart-splits.nvim

🧠 Smart, seamless, directional navigation and resizing of Neovim + terminal multiplexer splits. Supports tmux, Wezterm, and Kitty. Think about splits in terms of "up/down/left/right".
MIT License
906 stars 38 forks source link

bug: SmartResizeLeft/Right echos message into command line #6

Closed cwqt closed 2 years ago

cwqt commented 2 years ago

Calling :SmartResizeLeft or Right puts a message into the command line that means I have to press Enter on every resize, this doesn't happen for Up or Down though

image

I've silencing this via:

map <silent><A-H> :SmartResizeLeft 4<CR>
map <silent><A-J> :SmartResizeDown 2<CR>
map <silent><A-K> :SmartResizeUp 2<CR>
map <silent><A-L> :SmartResizeRight 4<CR>

but no avail

mrjones2014 commented 2 years ago

whoooops I left some print statements in there, my bad 😅

mrjones2014 commented 2 years ago

sorry about that 😅

cwqt commented 2 years ago

no worries! thanks for the quick fix :)