Jump to specific line number in a buffer

I use ctrl-d and ctrl-u and the j and k keys for a lot of my movement in buffers, but there are some times when I’d also like to go to a specific line number in a file as well. In vim, I usually jump to a line number by doing “:line-number”, but I’m not sure how one would do it in Kakoune.

{line-number}g
1 Like

Awesome, thanks a lot!

In Vim, you can go to line 123 by typing :123<ret> or 123g.

In Kakoune, only the latter works.

Gotcha, makes sense now. Thanks for the help!