kerty0
kerty0
Based on my testing, it appears that memory leaks occur due to unsuccessful (in case of `dpms-off`) or overlapping transitions. As temporary fix you could use `--transition-type none` or kill...
Yes, `swww-daemon` restores wallpaper based on cache and `swww img` modifies it but `swww clear` doesn't. You can set persistent color wallpaper with `swww img 0x446688`.
From what I've gathered, [CSI Ps S](https://ghostty.org/docs/vt/csi/su) and [CSI Ps T](https://ghostty.org/docs/vt/csi/sd) only operate on the viewport and can't modify the scrollback buffer. Therefore, it is the choice between only rendering...
Now, before final rendering, fish will check if a function is marked as transient (using `function fish_prompt --transient`) and reexecute it with the `--final-rendering` argument. Example: ```fish function fish_prompt --transient...
Sorry for the delay. I've tried improving the documentation, but I don't have much experience writing it and English isn't my native language. Any suggestions would be appreciated!
Only compiles with rustc >= 1.79.0. Not sure if I should fix for older versions or bump the minimum rustc version (Debian 13 ships 1.85.0).
🤦 Forgot to test this without multiline prompt. The issue originates from 7acc2b7 which broke #6826. Fix: ``` diff --git a/src/screen.rs b/src/screen.rs index fb26d2c2d..c03a1973a 100644 --- a/src/screen.rs +++ b/src/screen.rs @@...
> Thanks that works but I wonder why we need to reset the line (e.g. emit \r here). Without this, multiline prompts will show duplicated lines. The core issue is...
> Your other diff about `cursor_is_wrapped_to_own_line()` might be useful for empty prompts, I'm not sure. The `cursor_is_wrapped_to_own_line()` diff is necessary to fix the regression of #6826 introduced by 7acc2b7. >...