Bash shell integration makes script execution slow #3724
Unanswered
ZoltanLajosKis
asked this question in
Ideas and Issue Triage
Replies: 1 comment
-
I have an upstream |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Script execution with shell-integration takes a lot longer than with
shell-integration = none
.Executing
time for i in {0..100000}; do :; done
takes around 150 ms when disabled, and takes over 4 seconds when not disabled.Executing
time for i in {0..100000}; do echo $i; done
takes around 450 ms when disabled, and takes over 6 seconds when not disabled.Tested on Ubuntu 22.04.5 with X11, running Ghostty 1.0.0 built with zig-0.13.0 (--release=fast), default config.
Beta Was this translation helpful? Give feedback.
All reactions