Alan
Alan
```shell > (fd -gp '**' / | exit) # exits normally > (fd -gp '**' / | fzf) # exits normally > fd -gp '**' / | fzf # exits...
Thank you, I now undestand the problem. I didn't know how terminating the pipe works, my assumption was that a signal is sent when the receiving process exits, not when...
I can get it consistently but my setup is a bit nuanced: 1. I use [fusuma](https://github.com/iberianpig/fusuma?tab=readme-ov-file) to set up some gestures. My fusuma config is as follows: ```yaml swipe: 3:...
@SomeoneToIgnore Examples are indeed helpful but I wondered if there are precise (to the extent possible) mappings between language concepts and capture groups. Good examples of such mappings are [Helix...
I find the escaping rules incomprehensible and end up just putting everything into a script even for small one-liner commands, so that I could just do `:sh /path/to/script`. I would...
As a quick workaround, I noticed it doesn't happen (or is unnoticeable) when the workspace switching animation style is set to `fade` ``` animations { bezier = easeInOutExpo, 0.87, 0,...
In the meanwhile, I use a script for this: The script ```sh #! /usr/bin/env zsh direction=$1 delta=10 active=($(hyprctl activewindow -j | jq -r '.address + "\n" + (.floating | tostring)'))...
I think a feature worth considering is jumping while adding the target word as a new selection, similarly to what `n` in select mode does.
Re: how it acts with regards to selections. An interesting implementation has been recently tried out in https://github.com/phaazon/hop.kak. What I found really elegant and interesting is that it's extensible as...