Xcode duplicate/delete line

XcodeLineDuplicate Data

Xcode Problem Overview


Coming from Eclipse and having been used to duplicate lines all the time, it's pretty strange finding out that Xcode has no such function. Or does it?

I know it's possible to change the system wide keybindings but that's not what I'm after.

Xcode Solutions


Solution 1 - Xcode

To delete a line: Ctrl-A to go to the beginning of the line, then Ctrl-K to delete it, and another time Ctrl-K to remove the empty line. (I do not use Xcode very often, but I'm used to that in Emacs and other text inputs with Emacs-like bindings, and it seems to work in Xcode too.)

And to duplicate a line: I don't know of many programs that have a command for that, but usually I just use Copy+Paste - in Xcode it's CUA-like: Ctrl+A to go to the beginning of the line, Shift+ to select it, Command+C to copy and Command+*V to paste twice (once overriding the line and once appending to it).

(from a person that types and edits text all the time, so often in different programs, and occasionally gets pissed at having to distract himself with a dumb widget while making a little correction in a text input, that he just cannot avoid remembering these sequences and habits)

Solution 2 - Xcode

The whole point is NOT to use the Cmd-C/Cmd-V shortcuts. I have the same issue coming from IntelliJ, and being able to just duplicate lines with Cmd-D and delete them with Cmd-Y is a big time saver.

It's been bugging me ever since. However, it looks like someone else has found a solution that works.

In short, create a file ~/Library/KeyBindings/PBKeyBinding.dict with the following content and restart Xcode.

{
    "^$K" = (
        "selectLine:",
        "cut:"
    );
    
    "^$D" = (
        "selectLine:",
        "copy:",
        "moveToEndOfLine:",
        "insertNewline:",
        "paste:",
        "deleteBackward:"
    );
}

This will create two shortcuts: Ctrl-Shift-K for deleting the current line and Ctrl-Shift-D for duplicating the current line. Please note that this will only work if you are NOT using a custom key binding set in Xcode. Switch to "XCode Default" and things should work. Tested on XCode 3.2 on Snow Leopard.

More information on Mac OS X key bindings: <http://funkworks.blogspot.it/2013/03/republishing-of-wwwerasetotheleftcompos.html>

Solution 3 - Xcode

Delete a line like eclipse CTRL+D (tested on Xcode 4.5.1) :

First of all, change these rights :

sudo chmod 666 /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Resources/IDETextKeyBindingSet.plist

sudo chmod 777 /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Resources/

Open /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Resources/IDETextKeyBindingSet.plist with Xcode himself and add this new entry :

deleteToBeginningOfLine:, moveToEndOfLine:, deleteToBeginningOfLine:, deleteBackward:, moveDown:, moveToBeginningOfLine:

enter image description here

Restart Xcode and open Xcode > Preferences > KeyBindings. Find your macro and define a shortkey :

enter image description here

Solution 4 - Xcode

I tried the key bindings solution, but it I couldn't get it to work. However editing my XCode key bindings works like a charm. Here's how I made it.

This solution does not alter the contents of the Clipboard!

Open the XCode Key Bindings:

alt text

In the Edit User Scripts Dialog:

  1. Duplicate the "Move Line Down" script and rename it
  2. Duplicate the "Move Line Down.scpt" file, rename the script, select file via (double click) in Script Editor
  3. Edit the script (Opens "AppleScript Editor") and remove the "delete (paragraphs startLine through endLine)" passage.
  4. If you do not want to restart XCode, you seem to have to remove and re-add the script. Be sure that you have "Output" set to "Discard Output", otherwise you will have a "(null)" in your source file
  5. I slightly modified the scripts a little bit more to have the right lines selected:

Duplicate Line Up:

using terms from application "Xcode"
tell first text document
	set {startLine, endLine} to selected paragraph range
	
	if startLine > 1 then
		set theText to (paragraphs startLine through endLine)
		set theText to (theText as string)
		make new paragraph at beginning of paragraph (startLine) with data theText
		set selected paragraph range to {endLine + 1, endLine + endLine - startLine + 1}
	else
		beep 1
	end if
end tell
end using terms from

Duplicate Line Down:

using terms from application "Xcode"
tell first text document
	set {startLine, endLine} to selected paragraph range
	if endLine < (count paragraphs) then
		set theText to (paragraphs startLine through endLine)
		set theText to (theText as string)
		(* delete (paragraphs startLine through endLine) *)
		make new paragraph at beginning of paragraph (endLine + 1) with data theText
		set selected paragraph range to {startLine, endLine}
	else
		beep 1
	end if
end tell
end using terms from

alt text

Solution 5 - Xcode

OK, so I had this working for a while and then suddenly it broke. Now I have combined from different posts here and found a solution that works for XCode 6.3.1.

  1. Go to /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Versions/A/ with Finder.

  2. find the folder named Resources. Right Click it, press Get Info, unlock the sharing & permissions setting (By pressing the lock) and set it to Read & Write for all.

  3. Enter the folder and find the file IDETextKeyBindingSet.plist. Right Click it, press Get Info, unlock the sharing & permissions setting (By pressing the lock) and set it to Read & Write for all.

  4. Open the file with XCode (Default)

  5. Find deletions, right click and add a new row. Name it for example Delete Line. In the value field, type: selectLine:, deleteBackward: . (This can also be done for duplicate line: selectLine:,copy:,moveToEndOfLine:,insertNewline:,paste:,deleteBackward:)

  1. Start XCode, go to preferences / keybindings and search for Delete Line. Set shortcut. Enjoy.

Solution 6 - Xcode

To Delete Line in Xcode 10.1, please follow the steps of below screenshot to add a shortcut key.

enter image description here

Solution 7 - Xcode

As Xcode 4 makes this difficult to implement using key bindings, I have resorted to using Keyboard Maestro (Quickeys should work well too, but it's not fully Lion compatible). For e.g., here is my Keyboard Maestro shortcut (bound to ⌘-⇧-D):

Solution 8 - Xcode

I know that this thread is quite old but I found another solution using BetterTouchTool, you can execute the Ctrl+A, Ctrl+K, Ctrl+K sequence in one shortcut by configuring like this in BTT:

enter image description here

(Use the Attach Additional Action Button to append the second and third shortcut)

PS: Coming from Eclipse where Cmd+D is delete line ^^

Solution 9 - Xcode

We are on Xcode 9.0 and the keybindings are still not working. Sigh.

I found this gist very helpful so reposting it here for future reference:

  1. Open /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Versions/A/Resources/IDETextKeyBindingSet.plist
  2. Add the following XML snippet to this file just above the bottom </dict>
  3. Go to Xcode preferences -> Key Bindings -> Text tab -> Scroll till you see Duplication
  4. Click on Duplicate Current Line, add a shortcut for it, eg. Cmnd+D (resolve any duplicate bindings)
  5. Open Xcode
<key>Duplication</key>
<dict>
	<key>Duplicate Current Line</key>
	<string>moveToBeginningOfLine:, deleteToEndOfLine:, yank:, insertNewline:, moveToBeginningOfLine:, yank:</string>
	<key>Duplicate Lines</key>
	<string>selectLine:, copy:, moveToEndOfLine:, insertNewline:, paste:, deleteBackward:</string>
	<key>Delete Line</key>
	<string>selectLine:, deleteBackward:</string>
</dict>

Solution 10 - Xcode

Use user scripts.

There are scripts to move and delete lines yet. You have to define key binds for those scripts (menu Scripts -> Edit User Scripts..., under xCode 3.2).

To duplicate line, you have to make your own script. But it's very simple ! Duplicate the "Move Line Down" script and remove the line which delete selected text :

delete (paragraphs startLine through endLine)

Solution 11 - Xcode

Triple click to select the whole line, command-c to select and command-v twice to duplicate it. It's not an Xcode function, it's just part of the OS.

Solution 12 - Xcode

There's a solution for XCode4 line duplication over here

I've also added line deletion to the plist:

<key>Remove Line</key> <string>selectLine:, deleteBackward:</string>

Solution 13 - Xcode

No need to modify Xcode. You can just use the Xcode extension Linex

enter image description here

Solution 14 - Xcode

The solution by damien.flament works great and you may need set output to "Discard Output" see the pic below

Userscripts setting

P.S: I don't know how to comment his answer.

Solution 15 - Xcode

As said above, close XCode and insert following to ~/Library/Application Support/Xcode/Key Bindings/ <user>.pbxkeys inside <dict> in <key>text</key> section:

    <key>^D</key>                                                                                                      
    <array>                                                                                                            
        <string>moveToLeftEndOfLine:</string>                                                                               
        <string>deleteToEndOfLine:</string>                                                                                      
    </array>                                                                                                           
    <key>^K</key>                                                                                                      
    <array>                                                                                                            
       <string>selectLine:</string>                                                                               
       <string>copy:</string>                                                                                     
       <string>moveToEndOfLine:</string>                                                                          
       <string>insertNewline:</string>                                                                            
       <string>paste:</string>                                                                                    
       <string>deleteBackward:</string>                                                                           
    </array>

Start XCode and enjoy CTRL-SHIFT-D and CTRL-SHIFT-K.
If you want CTRL-D and CTRL-K, use ^d and ^k in key definitions instead. Ensure there are no duplicate key bindings in the file.

Works fine for me with XCode 3.2

Solution 16 - Xcode

This is possible using BetterTouchTool. CMD+D will duplicate a line. Create a new shortcut like this:

enter image description here

Use the Attach Additional Action Button to append the second and third shortcut

Solution 17 - Xcode

If you already have customised your Xcode key bindings, you'll have to edit the file: ~/Library/Application Support/Xcode/Key Bindings/<user>.pbxkeys. Just add the two arrays (described above) to the Root/text dictionary.

Solution 18 - Xcode

Three step to delete current line (see too long, but do very fast :D)

Cmd + : move to end of line
Cmd + Delete : delete to begin of line
Delete : delete empty line

Solution 19 - Xcode

For Xcode 6.1 got to Xcode > Preferences > KeyBindings > Text And there is "Delete to End of Line" and assign a key you want.

Solution 20 - Xcode

XCodePlus delete line plugin, is a XCode that does this for you. It came pre installed with Alcatraz package manager...

https://github.com/payliu/XcodePlus

Solution 21 - Xcode

Still there is no built-in way to duplicate lines, as of Xcode 9. And custom key bindings seem to have problems.

Update: Xcode 10.0 beta 6 (10L232m) is the same.

Solution 22 - Xcode

Go to this address :

/Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Resources/IDETextKeyBindingSet

and then copy IDETextKeyBindingSet.plist file in some where and then open copied file and insert

selectLine:, copy:, paste:, paste: like this picture enter image description here and save it and replace copied file in this address /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Resources/IDETextKeyBindingSet

then restart xcode , open xcode prefences , go to keybinding tab , search for duplicate line(customized) and define short key for it like image below

[1]: https://i.stack.imgur.com/UTeZu.png

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSummerView Question on Stackoverflow
Solution 1 - XcodeTom AlsbergView Answer on Stackoverflow
Solution 2 - XcodeFrank SchröderView Answer on Stackoverflow
Solution 3 - XcodeOpenaView Answer on Stackoverflow
Solution 4 - XcodeleviathanView Answer on Stackoverflow
Solution 5 - XcodeJoakimView Answer on Stackoverflow
Solution 6 - XcodeGagandeep GambhirView Answer on Stackoverflow
Solution 7 - XcoderaheelView Answer on Stackoverflow
Solution 8 - XcodeLaurent MeyerView Answer on Stackoverflow
Solution 9 - XcodeJannie TheunissenView Answer on Stackoverflow
Solution 10 - XcodeDamien FlamentView Answer on Stackoverflow
Solution 11 - XcodePaul TomblinView Answer on Stackoverflow
Solution 12 - XcodeMartinMcBView Answer on Stackoverflow
Solution 13 - XcodeAlaeddineView Answer on Stackoverflow
Solution 14 - XcodepalanirajaView Answer on Stackoverflow
Solution 15 - XcodeaskhView Answer on Stackoverflow
Solution 16 - XcodeAdam StudenicView Answer on Stackoverflow
Solution 17 - XcodeMonsieurDartView Answer on Stackoverflow
Solution 18 - XcodehuyncView Answer on Stackoverflow
Solution 19 - XcodeSpyZipView Answer on Stackoverflow
Solution 20 - XcodeJoakimView Answer on Stackoverflow
Solution 21 - XcodeerkanyildizView Answer on Stackoverflow
Solution 22 - XcodeKhaterehView Answer on Stackoverflow