Is there an Emacs-analog for the VI '.' command to repeat-last-typed-text
I've used emacs for decades and always won开发者_Python百科dered, but kept on coding, if there was a way to type in something, them move the cursor and insert the same text, like the VI . command.
Instead what I do is to type the text, set the mark, backup, copy the region, go to the next spot (often just C-n, down one line) and then pre-arg yank, C-u C-y.
It's the overhead of set mark, backup and copy region that makes me just go ahead and retype the thing.
Download dot-mode.el from the emacs wiki.
After installing and byte-compiling this, you'll be able to type control-dot for what you want.
Enjoy :-)
精彩评论