I saw this same question for VIM and it has been something that I myself wanted to know how to do for Emacs. In ReSharper I use CTRL-D for this action. What is the least number of commands to perform this in Emacs?
|
|
I use
which breaks down to
The aforementioned
amounts to the same thing (TMTOWTDI)
These are both embarrassingly verbose compared to
(@Nathan's elisp version is probably preferable, because it won't break if any of the key bindings are changed.) Beware: some Emacs modes may reclaim |
|||
|
|
|
' I wrote my own version of
|
|||
|
|
|
|
My version of a function to duplicate a line that works nice with undo and doesn't mess with the cursor position. It was the result of a discussion in gnu.emacs.sources from November 1997.
Then you can define CTRL-D to call this function:
|
|||
|
|
|
|
I don't quite remember how line duplication works anywhere else, but as a former SciTE user I liked one thing about SciTE-way: it doesn't touch the cursor position! So all the recipies above weren't good enough for me, here's my hippie-version:
Note that nothing gets actually killed in process, leaving marks and current selection intact. BTW, why you guys so fond of jerking cursor around when there's this nice'n'clean kill-whole-line thingy (C-S-backspace)? |
|||
|
|
|
|
The defaults are horrible for this. However, you can extend Emacs to work like SlickEdit and TextMate, that is, copy/cut the current line when no text is selected:
Place the above in |
||
|
|
|
|
something you might want to have in your .emacs is
Which basically kills the entire line plus the newline whenever you invoke kill-line (i.e. via C-k). Then without extra code, you can just do C-a C-k C-y C-y to duplicate the line. It breaks down to
But if you use this often then maybe a dedicated key binding might be a better idea, but the advantage of just using C-a C-k C-y C-y is you can duplicate the line elsewhere, instead of just below the current line. |
||
|
|
|
|
Nathan's addition to your .emacs file is the way to go but it could be simplified slightly by replacing
with
yielding
|
||
|
|
|
|
I have copy-from-above-command bound to a key and use that. It's provided with XEmacs, but I don't know about GNU Emacs. `copy-from-above-command' is an interactive compiled Lisp function -- loaded from "/usr/share/xemacs/21.4.15/lisp/misc.elc" (copy-from-above-command &optional ARG) Documentation: Copy characters from previous nonblank line, starting just above point. Copy ARG characters, but not past the end of that line. If no argument given, copy the entire rest of the line. The characters copied are inserted in the buffer before point. |
||
|
|
|
|
In addition to the previous answers you can also define your own function to duplicate a line. For example, putting the following in your .emacs file will make C-d duplicate the current line.
|
||
|
|
|
|
|
||
|
|
|
|
@[Kevin Conner]: Pretty close, so far as I know. The only other thing to consider is turning on |
||
|
|
|
Place cursor on line, if not at beginning do a CTRL-A, then: CTRL-K CTRL-K CTRL-Y CTRL-Y |
||||||
|
|
|
ctrl-k, ctrl-k, (position to new location) ctrl-y Add a ctrl-a if you're not starting at the beginning of the line. And the 2nd ctrl-k is to grab the newline character. It can be removed if you just want the text. |
||
|
|
|
|
because i don't know, i'll start this round of golf with a slowball: ctrl-k, y, y |
||
|
|
|
|
well ive usually used: Ctl-Space (set the mark) move to end of line Ctl-K kill line Ctl-Y * 2 (yank the line back) there may be a much better way though :P |
||||
|
