Hi,
For example I have the following in Kakoune:
declare-option -hidden str-to-str-map mymap foo=bar baz=whatevs
I would like to read the value with the key, something like:
echo %opt{mymap[foo]}
It should return bar
. The syntax above does not work. How can I do that? Is it even possible?
Thanks,