Is there any easy way to select/change/delete an argument in kakoune?
For example, if I have
int foo(int arg1, int arg2)
and I would like to select int arg1. In spacemacs I can do this with via. How do I do this in kakoune?
Is there any easy way to select/change/delete an argument in kakoune?
For example, if I have
int foo(int arg1, int arg2)
and I would like to select int arg1. In spacemacs I can do this with via. How do I do this in kakoune?
You can use the
utext-object. So, while inside the parens type<a-i>u.If you do
<a-a>uinstead, it will also select the following comma and space.