joshnajera / godot-vim

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

'd' and 'c' do not interoperate with 't' and 'f' #15

Open zolrath opened 11 months ago

zolrath commented 11 months ago

While in normal mode, a user can type t<letter> or f<letter> to move their cursor before or on a character, respectively. However, you cannot type dt<letter> to delete all characters up until <letter>, or ct<letter> to delete all characters until <letter> and be in edit mode.

Being able to easily ct_ to change a single word in a const MULTIPLE_WORD_CONST is extremely useful!