Published on

Neovim delete last character of each line

  • %normal $x
    • : puts you into command line mode
    • % is a range representing the entire file
    • normal says we're running a normal mode command
    • $x deletes the last character in the line

Reference