We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93549a9 commit 52c3ec4Copy full SHA for 52c3ec4
lua/smart-splits/mux/init.lua
@@ -15,18 +15,18 @@ local directions_reverse = {
15
local function move_multiplexer_inner(direction, multiplexer)
16
local current_pane = multiplexer.current_pane_id()
17
if not current_pane then
18
- log.error('Failed to get multiplexer pane ID')
+ log.debug('Failed to get multiplexer pane ID')
19
return false
20
end
21
22
local ok = multiplexer.next_pane(direction)
23
if not ok then
24
- log.error('Failed to select multiplexer pane')
+ log.debug('Failed to select multiplexer pane')
25
26
27
local new_pane = multiplexer.current_pane_id()
28
if not new_pane then
29
30
31
32
0 commit comments