Skip to content

Commit 6874641

Browse files
committed
feat: add zellij support
Very rudimentary, draft to support zellij.
1 parent 649f079 commit 6874641

File tree

2 files changed

+32
-7
lines changed

2 files changed

+32
-7
lines changed

autoload/tpipeline.vim

+26-6
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,33 @@ endif
55
let s:exit_code = -1
66

77
func tpipeline#get_filepath()
8-
" e.g. /tmp/tmux-1000/default-$0-vimbridge
9-
let tmux = $TMUX
10-
if empty(tmux)
11-
let p = "/tmp/tmux-" . systemlist("id -u")[-1]
8+
9+
if !empty($ZELLIJ)
10+
" e.g. /tmp/zjstatus-$UID/$SESSION_NAME-$PANE_ID-vimbridge
11+
let p = "/tmp/zjstatus-" . systemlist("id -u")[-1]
1212
silent! call mkdir(p)
13-
let tmux = p . "/default,0,0"
13+
let session = $ZELLIJ_SESSION_NAME
14+
" TODO: wait for https://github.com/zellij-org/zellij/issues/2835
15+
" so we can identify the currently active pane. Now I have to hardcode it
16+
" to zjstatus - so no reason to use the variable here, yet.
17+
" let paneid = $ZELLIJ_PANE_ID
18+
let paneid = "0"
19+
let p = p . "/"
20+
let zellij = p . session . "-" . paneid . "-vimbridge"
21+
return zellij
22+
endif
23+
24+
25+
if !empty($TMUX)
26+
" e.g. /tmp/tmux-1000/default-$0-vimbridge
27+
let tmux = $TMUX
28+
if empty(tmux)
29+
let p = "/tmp/tmux-" . systemlist("id -u")[-1]
30+
silent! call mkdir(p)
31+
let tmux = p . "/default,0,0"
32+
endif
33+
return strcharpart(tmux, 0, stridx(tmux, ",")) . '-$' . strcharpart(tmux, strridx(tmux, ",") + 1) . '-vimbridge'
1434
endif
15-
return strcharpart(tmux, 0, stridx(tmux, ",")) . '-$' . strcharpart(tmux, strridx(tmux, ",") + 1) . '-vimbridge'
1635
endfunc
1736

1837
func tpipeline#build_hooks()
@@ -169,6 +188,7 @@ func tpipeline#exit_cb(job, code)
169188
endfunc
170189

171190
func tpipeline#fork_job()
191+
" TODO: for ZELLIJ, only do what is necessary
172192
if g:tpipeline_restore
173193
let s:restore_left = systemlist("sh -c 'echo \"\"; tmux display-message -p \"#{status-left}\"'")[-1]
174194
let s:restore_right = systemlist("sh -c 'echo \"\"; tmux display-message -p \"#{status-right}\"'")[-1]

autoload/tpipeline/util.vim

+6-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ func tpipeline#util#left_justify(str)
1212
endfunc
1313

1414
func tpipeline#util#set_size()
15-
let g:tpipeline_size = str2nr(systemlist("sh -c 'echo \"\"; tmux display-message -p \"#{window_width}\"'")[-1])
15+
if !empty($TMUX)
16+
let g:tpipeline_size = str2nr(systemlist("sh -c 'echo \"\"; tmux display-message -p \"#{window_width}\"'")[-1])
17+
elseif !empty($ZELLIJ)
18+
" TODO: verify if this is reasonable.
19+
let g:tpipeline_size = str2nr(systemlist("sh -c 'tput cols'")[-1])
20+
endif
1621
endfunc
1722

1823
func tpipeline#util#set_custom_size()

0 commit comments

Comments
 (0)