This question is not directly related to vifm, but I would appreciate any feedback.
I am using nevim as my editor and use nvr to enable remote commands for neovim. Here is what I have for vicmd
:
set vicmd=nvr\ --servername\ /tmp/nvimsocket\ --remote
This works fine and all the edits will be redirected to the existing instance of neovim. However, this doesn't work for bulk renaming. I was wondering if there is any way to define a separate vicmd
for specific operations in vifm? Or maybe a conditional vicmd
depending on the number of inputs (if only 1 input use above vicmd
, if not use nvim
, e.g. for bulk renaming)?
Thank you.