joshnajera / godot-vim

VIM bindings for godot 4
MIT License
235 stars 24 forks source link

G binding is missing argument #27

Open henrebotha opened 6 months ago

henrebotha commented 6 months ago

In Vim, G takes you to line 1. This is actually a special/default case of [count]G, which takes you to line [count], e.g. 5G takes you to line 5. This plugin does not have the latter feature. It would be very handy to be able to specify the line number to easily jump to a particular line.

binury commented 2 months ago

gg is go to line 1. G is last line. Seems to be working as expected

binury commented 2 months ago

(And <num-G> is working as expected also)

zer0divider commented 1 month ago

Yup, can confirm. <num-G> and gg both work as expected.