How do I jump through the placeholders?
The plugin seems to just place cursors at each of the placeholder locations.
You might want to use a plugin that allows editing only the primary selection while retaining other selections, since doing that with the default kakoune commands might not be as ergonomic.
To fill out multi-placeholder snippet using just the default commands, the “algorithm” would look like this:
Z,c
- edit the first placeholder
z)Z,c
- edit the next placeholder (repeat this for as many placeholders you have)
1 Like
thank you very much @cipharius! greetings from LT.
I was expecting to use the z
s for this, but had not yet encountered )
. both going to the arsenal.