raphCode

Results 92 comments of raphCode

We actually have a dedicated signal handling thread here: https://github.com/zellij-org/zellij/blob/a7ddfe1acc798adb4c8dfba2b674fd9e133b4c15/zellij-client/src/lib.rs#L239 https://github.com/zellij-org/zellij/blob/a7ddfe1acc798adb4c8dfba2b674fd9e133b4c15/zellij-client/src/os_input_output.rs#L155 So I am not sure why any signal still interrupts the polling syscall (probably `poll` or `select` returning `EINTR)`...

Disclaimer: I do not know this area of the code well, take the following with a grain of salt: Judging from my Rust knowlegde, `poll()` very likely returns a `Result`...

Related: https://github.com/zellij-org/zellij/issues/1446 https://github.com/zellij-org/zellij/issues/1403 https://github.com/zellij-org/zellij/issues/1353 I think we are working on dumping the content to a file already, would this fit your use-case?

When I think about it, I personally prefer your proposal over some keybindings. As an added benefit, we can dump it to file very easily from a shell and even...

Can't we just try to use the tty special file? This should be uniquely identifying and is hard to mess with: `readlink /proc/self/fd/0` `ls -Li /proc/self/fd/0` Any of these should...

Maybe I am misunderstanding, but the original problem was that a `sleep 10; zellj command` may act on the wrong pane? For this I suggested that the `zellij command` process...

Could all workflows with nested session also be achieved by having a single zellij client connect to multiple (local and remote) servers and their sessions? See also https://github.com/zellij-org/zellij/issues/387 If so,...

Maybe some basic tutorial would be helpful to lower any starting hurdles for newcomers and familiarize them with the workflows and concepts of zellij. It could be in these forms:...

To my understanding, the appearance depends on the font settings and rendering of the terminal emulator? Zellij always sends the same unicode characters to draw its frames. Maybe you can...

After some discussion, I gained more info around the bug: Zellij sends escape codes to make the pane frame characters bold. alacritty seems to ignore this compared to konsole.