Skip to content

Commit 9855936

Browse files
committed
Fix condition in _VimuxTmuxIndex()
This ensure that we call `_VimuxRunnerType()` instead of `_VimuxRunnerType`.
1 parent 2e9b00b commit 9855936

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/vimux.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ function! _VimuxTmuxSession()
124124
endfunction
125125

126126
function! _VimuxTmuxIndex()
127-
if _VimuxRunnerType == "pane"
127+
if _VimuxRunnerType() == "pane"
128128
return _VimuxTmuxPaneIndex()
129129
else
130130
return _VimuxTmuxWindowIndex()

0 commit comments

Comments
 (0)