#HelixEditor editor: How can I delete everything from my current cursor position until the end of the file?
`v g e` selects everything until the last LINE but not the last line itself completely;
is `v g e x` the right way to do it?

To be honest: I need this quite often….

#Followerpower

@derphilipp you can also use a config to override "v g e" in select mode. See: https://github.com/helix-editor/helix/issues/14891#issuecomment-3590640566
Cannot delete til end of buffer · Issue #14891 · helix-editor/helix

I want to delete until the end of the file. Hello World Currently vged gives us orld I tried rebinding ge to go to file end. [keys.select] "g" = { "e" = "goto_file_end" } This does not work as expe...

GitHub
@madaha Oh wow! Thank you so much! <3
@derphilipp If the start of the selection is in the middle of the line, `x` might not do what you want, but you might be able to replace the `x` with `t<Enter>` instead 🤷