Bigtree
Bigtree

Reputation: 147

What does <M-e> signify in VIM?

I am using a vim plugin (auto-close) that uses the command to 'fast wrap' text. I initially thought that stood for Atl-e but that just takes the cursor to the terminal header -- I'm running Ubuntu Desktop.

Upvotes: 0

Views: 457

Answers (1)

mMontu
mMontu

Reputation: 9273

Vim's documentation is extremely well-written and comprehensive.

Following :help keycodes or :help <M-:

<M-...>     alt-key or meta-key     *meta* *alt* *<M-*

So <M-e> is Alt+e

Upvotes: 1

Related Questions