Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • 3
    "most useful" or "favorite" type questions tend to be too vague for this site. I'd suggest revising your question to be more specific, e.g. "what's the fastest way to get to the end of the line in insert mode?". Also, I think you meant esc A (A = shift a), not esc ctrl a. Commented Dec 22, 2011 at 16:23
  • With the default key bindings, ctrl+A increments rather than appends; did you mean shift+A instead? Commented Oct 23, 2025 at 23:16
  • Vim allows insertions to be interrupted by cursor movement keys, after which insertion is immediately resumed, so I suggest simply: :imap ^E <End> and :nmap ^E A Commented Oct 23, 2025 at 23:26