We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6874641 commit 6b935bfCopy full SHA for 6b935bf
autoload/tpipeline.vim
@@ -7,17 +7,12 @@ let s:exit_code = -1
7
func tpipeline#get_filepath()
8
9
if !empty($ZELLIJ)
10
- " e.g. /tmp/zjstatus-$UID/$SESSION_NAME-$PANE_ID-vimbridge
+ " e.g. /tmp/zjstatus-$UID/$SESSION_NAME-vimbridge
11
let p = "/tmp/zjstatus-" . systemlist("id -u")[-1]
12
silent! call mkdir(p)
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"
+ let zellij = p . session . "-vimbridge"
21
return zellij
22
endif
23
0 commit comments