As a workaround, you can modify the plugins/preview file. On line 127, remove the quotes around $SFF_PV_TERM and change it to the following:
When using sfopen as the opener, you shouldn't see that interactive prompt. It looks like you might have pressed Alt+o instead of Enter.
Currently, sff doesn't support "Quit Selection" since it lacks a feature to output the current directory on exit, nor does it automatically output selected file paths. But sff's copy operation...
Did you specify sfopen as the default opener using an absolute path?
A fundamental design principle of sff is to keep the core program and sff-extfunc as decoupled as possible. Modifying or adding functions or key bindings on either side should not require any...
Your patch looks great! If you're willing, you're welcome to publish it to the sff-patches repo.
The spawn function in enterdir() should be spawn(opener, newpath, NULL, *opener != '/'); (around line 647). In other words, if an absolute path is used, it should always be detach=FALSE. Did you...
Thanks for your help. I finally got it working. 29f55260ce
I tried the latest MangoWM 0.13.1 on both FreeBSD and Void Linux. I set windowrule=isterm:1,appid:foot in the config file, but the swallowing feature didn't work on either system. So I haven't...
Since sfopen's basic design is to launch programs through the script itself, the process chain is difficult to change. We'll have to look for alternative solutions. I tried MangoWM, but the...
I don't seem to be that sensitive to the flickering; I actually perceive it as a visual feedback for key presses. Regarding your proposed solutions, passing a signal via a pipe is feasible, but it...
Thank you so much for this!