ylzhang
ylzhang

Reputation: 1108

How to move to the first word in the line in Emacs?

In Vim, ^ can move the cursor to the first word (non white space) of the line, for example

    The quick brown fox jumps over the lazy dog

here ^ in Vim will move to T of The, but in Emacs, how to move cursor to the first word (non white space) of the line instead of using a series of M-b/f and C-a/e/b/f? Is there any existing command to make it?

Thanks

Upvotes: 5

Views: 1526

Answers (1)

Bozhidar Batsov
Bozhidar Batsov

Reputation: 56655

In Emacs the same thing is achieved by M-m (back-to-indentation).

Upvotes: 12

Related Questions