Open doongjohn opened 2 years ago
Please capture a terminal recording:
wezterm record
to start a recording session.exit
*** Finished recording to /var/tmp/wezterm-recording-sF6B3u.cast.txt
The file is an asciicast (compatible with https://asciinema.org/) and can also be replayed using wezterm replay
.
The terminal recording allows me to replicate what is being sent to the terminal without requiring me to install the same applications as you and replicate your configuration for everything.
this is weird...
when I run wezterm record
my keyborad input is producing unwanted ANSI escape code 😢
Those escape sequences are from https://wezfurlong.org/wezterm/config/lua/config/allow_win32_input_mode.html They are showing up because you're defaulting to running WSL which adds additional layers of PTY processing that get confused when you bridge back to win32 from WSL.
You may wish to disable that mode.
I'd suggest making two recordings so that we can compare them:
wezterm record
and record the test application.wezterm-gui -n
; the -n
will skip loading your config file. record the test application.For your launch menu item that launches powershell, I'd recommend explicitly using the local
domain because
the default_domain
in your config causes every command to be spawned via WSL, which adds undesirable overhead:
{
args = { 'pwsh.exe', '-nologo' },
-- always use the local native domain to avoid running via WSL
-- when using `default_domain`.
domain = { DomainName = 'local' },
}
I recorded with both terminal I hope this can help you fix this issue wezterm-recording-wezterm.cast.txt wezterm-recording-windowsterminal.cast.txt
What Operating System(s) are you seeing this problem on?
Windows
Which Wayland compositor or X11 Window manager(s) are you using?
No response
WezTerm version
20220916-074812-8d2a3cf7
Did you try the latest nightly build to see if the issue is better (or worse!) than your current version?
Yes, and I updated the version box above to show the version of the nightly that I tried
Describe the bug
I was trying out FTXUI library and found that this example(canvas_animated.cpp) runs slower than windows terminal https://github.com/ArthurSonzogni/FTXUI/blob/master/examples/component/canvas_animated.cpp
To Reproduce
https://github.com/ArthurSonzogni/FTXUI/blob/master/examples/component/canvas_animated.cpp compile and run this example
Configuration
Expected Behavior
https://github.com/ArthurSonzogni/FTXUI/blob/master/examples/component/canvas_animated.cpp this example should run as fast as (or faster than) windows terminal
Logs
Anything else?
No response