This may require upstream changes. I want to identify a verb in my main conf.toml:
[[verbs]]
key = "enter"
invocation = "edit"
shortcut = "e"
apply_to = "file"
external = "nvim {file}"
leave_broot = false
And then override it with a verb in my nvim.toml:
[[verbs]]
key = "enter"
invocation = "edit"
shortcut = "e"
apply_to = "file"
external = "broot.nvim edit +{line} {file}"
from_shell = true
As it stands, the second definition in nvim.toml just gets ignored.
This may require upstream changes. I want to identify a verb in my main
conf.toml:And then override it with a verb in my
nvim.toml:As it stands, the second definition in
nvim.tomljust gets ignored.