I'm looking for a way to map some hot-keys to "delete the line that my cursor is on" in Xcode. I found "delete to end of line" and "delete to beginning of line" in the text key bindings, but I am missing how to completely delete the line no matter what I have selected. TextMate has this functionality mapped to Ctrl+Shift+D and I'd like the same thing if possible. Any ideas?

link|improve this question

Not to say that edit wasn't apt, but so far in using this site, I've only read titles of posts (esp. when I'm browsing "new" posts without any of "my tags" applied. Hence, putting the title of the app in question would get the attention of Xcode programmers. Thoughts? – typeoneerror Jan 25 '09 at 15:42
Is this helpful? Xcode duplicate/delete line – leviathan Nov 7 '10 at 21:39
feedback

4 Answers

up vote 10 down vote accepted

You can set up a system-wide key binding file that will apply to all Cocoa apps.

To do what you want it should like like this:

In your home folder, Library/KeyBindings/DefaultKeyBinding.dict

{
    "^D" = (
        "moveToBeginningOfLine:",
        "deleteToEndOfLine:",
    );
}

I believe if you only want it to apply to Xcode you can name the file PBKeyBinding.dict instead but I didn't try that myself. You can read more about this system here and here.

link|improve this answer
3  
Unfortunately, Xcode4 doesn't seem to care about these files any longer. You can only map one command to one key combo in ~/Library/Developer/UserData/KeyBindings/*.idekeybindings – typeoneerror Aug 12 '11 at 18:57
feedback

Thanks for the help, Ashley. After some experimentation I mapped my favorite TextMate commands (duplicate line, delete line). I created the file ~/Library/KeyBindings/PBKeyBinding.dict and added the following:

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

The added "deleteBackward:" backs up one line after removing the line's content. You could probably just use "selectLine:" as well.

link|improve this answer
5  
Note, this does NOT work in Xcode 4 – typeoneerror Aug 12 '11 at 18:57
Know of any solutions for Xcode 4 ? – olafure Mar 30 at 21:47
feedback

I was looking for a solution to this, and I tried Ashley Clark's, but it turns out there's an easier option using an included User Script called delete Line.

  • Open the weird menu to the left of 'help' that looks like a scroll.
  • Choose Edit User Scripts...
  • Click the Key Bindings tab
  • Expand the Text section
  • Double click the ⌘ column next to 'Delete Line' and type your hotkey. It may warn you that you stole it from some other command but that's fine.

Done! You can do the same for Move Line Up and Move Line Down if you're an Eclipse junkie like me.

link|improve this answer
Just a note that I tried 'move line up' and 'move line down', but unfortunately they're so glitchy and sluggish that they're really not worth using. – Matt Rix Dec 20 '10 at 20:55
In Xcode 4, this is under Xcode => Preferences... => Key Bindings, but I don't see 'Delete Line' there. – MattDiPasquale Jun 18 '11 at 20:42
feedback

As I don't always work on the same xcode I prefer not to install scripts.

Xcode uses some sub-set of emacs commands. I use this approach to quickly delete a line. ^k (control-k) deletes from the cursor to the end of the line. Doing it twice also deletes the carriage return and takes up the next line. ^a takes you to the start of the line.

So to delete a complete line from the beginning you can use ^a^k^k.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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