en0mem
en0mem
Duplicate of #583.
When I tried your script, it works as expected, so I'm not sure why it is not working for you. What shell are you using (did you do `set shell...
Okay, I see what you mean. The implementation in the wiki works for me, so I'm not sure what's wrong. It would be super helpful if you could provide your...
I tried ``` cmd z %{{ echo "$@" }} ``` and it prints out `first second third` when I execute `:z first second third`. `lf` simply runs the command body...
That is really weird. I tried the command substitution syntax ``` cmd z %{{ res="$(echo "$@")" echo "$res" }} ``` with sh, bash and zsh, and it all works as...
How are you setting `EDITOR`? You probably need to export it, i.e. `export EDITOR=nvim`.
@66RING From the crash log, it seems that the segfault is happening in `getgrgid_r`, which is a libc function. Does it crash consistently when you move to certain files? If...
It is displayed as part of the file info, so you need to do `set info size` to see it.
The backtrace itself should be printed on the console, and the core dump can be retrieved using `coredumpctl` (`systemd` specific).
Seems like a race condition between `getenv` and `setenv`. In the preview thread, `exportOpts` is invoked, which calls `setenv` several times. In the main thread, `getgrgid` is invoked to get...