You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for taking the time to file this issue! Please follow the instructions and fill in the missing parts below the instructions, if it is meaningful. Try to be brief and concise.
Basic information
zellij --version: zellij 0.32.0 stty size: 60 116 uname -av or ver(Windows): Darwin mbp16.local 21.6.0 Darwin Kernel Version 21.6.0: Sat Jun 18 17:07:22 PDT 2022; root:xnu-8020.140.41~1/RELEASE_ARM64_T6000 arm64
Further information
Reproduction steps, noticeable behavior, related issues, etc
keybinds {
tmux {
bind "|" { NewPane "Right"; SwitchToMode "normal"; }
bind "\" { NewPane "Right"; SwitchToMode "normal"; } // <--- this line causes the panic.
}
}
The bind line with a backslash causes a panic. A possible alternative is to use the raw string specifically for any hotkey with a backslack, namely: bind r"\" { NewPane "Right"; SwitchToMode "normal"; }
The text was updated successfully, but these errors were encountered:
Thank you for taking the time to file this issue! Please follow the instructions and fill in the missing parts below the instructions, if it is meaningful. Try to be brief and concise.
Basic information
zellij --version
: zellij 0.32.0stty size
: 60 116uname -av
orver
(Windows): Darwin mbp16.local 21.6.0 Darwin Kernel Version 21.6.0: Sat Jun 18 17:07:22 PDT 2022; root:xnu-8020.140.41~1/RELEASE_ARM64_T6000 arm64Further information
Reproduction steps, noticeable behavior, related issues, etc
Below is a sample of my yaml config:
This is the translated KDL config:
The
bind
line with a backslash causes a panic. A possible alternative is to use the raw string specifically for any hotkey with a backslack, namely:bind r"\" { NewPane "Right"; SwitchToMode "normal"; }
The text was updated successfully, but these errors were encountered: