Open koalazub opened 1 month ago
This is a painful issue for me as well. I agree the search functionality could use some touch-ups. Until we fix it, you can use your default $EDITOR
to search (and even copy/paste) text in your scrollback. That's what I do: Ctrl s
+ e
.
Issues with the Zellij UI / behavior / crash
Issue description
When searching through large amounts of text, the search functionality severely breaks down after mistyping a character. Often times requiring me to close my terminal and relaunch the session. Zellij in its entirety becomes unusable. The characters are severely staggered well after I've typed the keys.
Minimal reproduction
zsh
andnushell
ctrl-s
s
zsh
generate_random_string() { local length=$1 local chars='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789' local result="" for (( i=1; i<=length; i++ )); do result+="${chars:$((RANDOM % ${#chars})):1}" done echo $result }
for i in {1..20000}; do echo "Iteration $i:" echo "Title: $(generate_random_string $((RANDOM % 71 + 30)))" echo "Body: $(generate_random_string $((RANDOM % 401 + 100)))" echo "Author: $(generate_random_string $((RANDOM % 21 + 10)))" echo "Email: $(generate_random_string $((RANDOM % 16 + 5)))@$(generate_random_string $((RANDOM % 6 + 5))).com" echo "Views: $((RANDOM % 10001))" echo "Likes: $((RANDOM % 1001))" echo "----------------------------------------" done
https://github.com/user-attachments/assets/46ff129a-695e-4684-baad-642587b2a159
Other relevant information
Version:
zellij 0.41.0
Terminal:alacritty 0.13.2
OS:macOS 15.1 (24B82)