raphCode

Results 96 comments of raphCode

Yes, feel free to work on this, I haven't got much time. To get started, I would advise to look at `move_focus_left_or_previous_tab()` in `zellij-server/src/screen.rs`. Currently, we call into the current...

I would appreciate an option key for not sending mouse clicks to the application inside the pane: I often find myself clicking into a pane to switch focus to it,...

That would work for me too. Mouse clicks to an application may require a double click then if the pane was previously unfocused. If it doesn't break someone's workflow, I...

> @raphCode - how about we rig it so that mouse clicks will only be sent to focused panes? I actually just ran into a solution where this would be...

We read mouse events from the terminal, which might be the reason your "default selection" does not work. On some terminals you can hold shift to get the original behavior....

I think the error in the post above me was fixed in v0.31.4: https://github.com/zellij-org/zellij/pull/1710 Not sure about the hangs or other server exits.

> Did a little digging Thanks @tlinford! > to send a `ClientInstruction::Error`, that then gets turned into a `ClientToServerMsg::Action(Action::Quit, None)` and makes the server exit. This happens here: https://github.com/zellij-org/zellij/blob/31d741263cf8dbbab463374d300349d00d1b93af/zellij-client/src/lib.rs#L359 Why...

This is maybe a problem with the terminal emulator, which ignores the `Alt` key and only sends a combination with `Ctrl`. I think we had similar problems in the past....

Okay, I can confirm that `Alt+Ctrl` key combos are parsed incorrectly / are recognized as `Ctrl` only

related: https://github.com/zellij-org/zellij/issues/1531