Wednesday, 1 February 2017

How to copy and past a line in emcas?


down voteaccepted

C-a C-SPACE C-n M-w C-y
which breaks down to
  • C-a: move cursor to start of line
  • C-SPACE: begin a selection ("set mark")
  • C-n: move cursor to next line
  • M-w: copy region
  • C-y: paste ("yank")

No comments:

Post a Comment