I make a command which is sending from ranger to edit a file in kak.
Command currently is echo "eval -client client0 %%{edit %p}" | kak -p session
and it works well.
Ranger’s placeholder %p
contains multiple file paths separated by space, but kak’s command edit
accept only one, so if i select in ranger many files and send the command to kak it opens only last.
How to improve command sending to edit all the files in %p
?