Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There is a Duplicate command in the Edit Menu (with a default shortcut of D), but it is (as Halley pointed out) meant for duplication in the Interface Builder part of Xcode.

So, how do you (easily) duplicate a line in Xcode 4?


Related question (with a working answer) for Xcode 3 ... and which does not work for Xcode 4.


Why not just copy & paste?

Because it is tedious and entails too much hand-acrobatics:

either (1): moving to line beginning and then pressing ⇧^E, then copying with ⌘C, moving to new line, alligning cursor, and finally pasting with ⌘V;

or (2): ^A (set cursor to line begining), ^SPACE (set mark), ^E (set cursor to line ending), ⇧^W (Select to Mark; customized), copy, new line, etc.

As Frank Schröder (in the related question) put it:

The whole point is NOT to use the Cmd-C/Cmd-V shortcuts.

share|improve this question
Select the line and copy paste? – Dani Apr 22 '12 at 17:19
@Dani, CP is just too much work (and line duplication isn't something for which need arises only rarely). :) I've updated the question. – courteous Apr 22 '12 at 19:58
1  
Command-D is for control duplication in Interface Builder. – Hailei Apr 23 '12 at 16:01
@Halley, this is good to know. And is it the equivalent of ⌥-mouse-drag (which also copies interface elements)? – courteous Apr 23 '12 at 16:26
@courteous I think so. Modifier Keys section in disanji.net/iOS_Doc/#documentation/DeveloperTools/Conceptual/… says that "pressing the Option key during drag-and-drop operations copies the selected objects instead of moving them." – Hailei Apr 23 '12 at 16:33
show 1 more comment

5 Answers

up vote 37 down vote accepted
+50
  1. Go to this folder which contains dark side of the force:
    • Xcode 4.2 or prior: /Developer/Library/PrivateFrameworks/IDEKit.framework/Resources
    • Xcode 4.3: I don't know, maybe it's /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Resources. I don't have Lion machine available at this moment... I will look at this when I have a chance later.
  2. Open IDETextKeyBindingSet.plist.
  3. Add a new dictionary and a new command item as the screenshot below (name them what you want): Editing the plist
  4. Restart Xcode and go to Preferences - Key Bindings, search for your command.
  5. Set a key combination for the command: Key Bindings

  6. Finally unleashed the power of key bindings on Xcode... Enjoy it!

share|improve this answer
1  
I don't know why but it crashes my Xcode. Note that the file is located here /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Versions/A/Resourc‌​es/ and you need to change permissions recursively sudo chmod 777 -R * otherwise you cannot edit this file... – Michal Stefanow Apr 28 '12 at 22:55
1  
@MichalStefanow, the location that you wrote is actually the same location that /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Resources alias points to. Otherwise, I've successfully followed Halley's steps on version 4.3.2 ... I suggest you backup up the original file and then open it in Xcode itself (and not in TextEdit). Also, regarding the permissions: changing them (only for the file itself; no recursion needed) in Finder worked just fine. – courteous Apr 29 '12 at 11:13
3  
Big thanx! For lazy users - selectLine:, copy:, moveToEndOfLine:, insertNewline:, paste:, deleteBackward: – Vlad Tsepelev Jun 8 '12 at 11:59
3  
If your xCode crashes! Close xCode, open file with any text editor and add your dictionary: <key>Custom</key> <dict> <key>Duplicate Current Line</key> <string>selectLine:, copy:, moveToEndOfLine:, insertNewline:, paste:, deleteBackward:</string> </dict> – Vlad Tsepelev Jun 8 '12 at 12:04
1  
Works for me in XCode 4.4.1! Had some trouble changing permissions (finder or chmod 777 and start with sudo from terminal didn't work, for some reason). I copied the file to somewhere else, edited it, and overwrote the original one, that worked. – Ixx Sep 1 '12 at 15:33
show 4 more comments

@Hailei's answer was pretty good, but had the unfortunate side-effect of clobbering the clipboard contents (leaving it populated with the contents of the duplicated line), which is precisely the part of the manual copy/paste approach that I was trying to avoid.

So, I changed the command sequence to this:

moveToBeginningOfLine:,
deleteToEndOfLine:,
yank:,
insertNewline:,
moveToBeginningOfLine:,
yank:

The 2 yank:s might not work as intended if you have NSTextKillRingSize set to something aside from 1, but I'm pretty sure 1 is the default, and you have to do some non-trivial work to change it (it requires adding an entry to ~/Library/Preferences/.GlobalPreferences.plist).

share|improve this answer
Even better. Thank you. – courteous Dec 14 '12 at 11:55
I suggest using the command defaults write -g NSTextKillRingSize 1 instead of playing with the GlobalPreferences.plist. ;) – dbernard Jan 11 at 20:31
couldnt make this one to work on xCode 4.6, any ideas? – amas Feb 5 at 20:42

I would consider revising the command sequence to:

selectLine:,
copy:,
moveToEndOfLine:,
insertNewline:,
deleteToBeginningOfLine:,
paste:,
moveToBeginningOfLine:, 
deleteBackward:

The added deleteToBeginningOfLine maintains the indenting of the duplicated line.

share|improve this answer

Here is my Delete (CTL-D) and Duplicate (CMD-SHIFT-D) entries from my IDETextKeyBindingSet.plist. (in /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Versions/A/Resources )

I just set these up in Xcode 4.6.1 (based on answer from user570753 above and elsewhere)

    <key>Custimozed</key>
<dict>
    <key>Delete Current Line</key>
    <string>deleteToBeginningOfLine:, moveToEndOfLine:, deleteToBeginningOfLine:, deleteBackward:, moveDown:, moveToBeginningOfLine:</string>
    <key>Duplicate Current Line</key>
    <string>selectLine:, copy:, moveToEndOfLine:, insertNewline:, deleteToBeginningOfLine:, paste:, moveToBeginningOfLine:, deleteBackward:</string>
</dict>
share|improve this answer

insertLineBreak needed at least for me to make copy on new line, without it i got copy on same line

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.