I’m trying to configure Broot to open files in specific Kakoune session. Here is excerpt from the docs:
if you need an actual explorer to interact with the editor, you can create a Kakoune script that will
spawn the tool in question, which should in return send an "edit" command followed by the path
of the file you selected to the current Kakoune session
(e.g. echo "eval -client $kak_client edit /path/to/file" | kak -p $kak_session)
If I run this command manually form command line - everything works as expected, the file is successfully opened in specified Kakoune session: echo eval -client client0 edit <path_to_some_file> | kak -p vk. But if I’m adding the same command to Broot config file, the command stops to work. Just nothing happens:
Unfortunately, leave_broot does not affect the issue. It just controls if Broot will exit after innovating edit command or not. execution: "echo eval -client client0 edit {file} | kak -p vk" does not work in both scenarios.