In previous versions of Xcode it was possible to create a key binding to delete the current line. There were different solutions and they are described for example here:

Xcode: Delete line hot-key

Xcode duplicate/delete line

http://bigdiver.wordpress.com/2009/09/11/configure-homeend-key-bidings-on-mac-os-x/

http://www.betadesigns.co.uk/Blog/2010/02/03/custom-xcode-shortcuts/

All solutions include modifying one of these files:

~/Library/Application Support/Xcode/Key Bindings/*.pbxkeys ~/Library/KeyBindings/DefaultKeyBinding.dict ~/Library/KeyBindings/PBKeyBinding.dict

A good resource for the existing shortcuts in Xcode 4 is http://cocoasamurai.blogspot.com/2011/03/xcode-4-keyboard-shortcuts-now.html . There are many listed regarding deletion, but none for "delete line".

BUT, these solutions do NOT work for Xcode 4 anymore. Does somebody have a solution for Xcode 4?

link|improve this question

75% accept rate
In the meantime I decided to create a keyboard macro with keyboardmaestro.com . – Klaas May 2 at 0:35
feedback

4 Answers

It looks as though XCode now uses a plist file versus a dict file, and the new format doesn't support adding multiple commands to a key binding. There also doesn't appear to be a way to add custom commands to bind to either. The only way I've found to get something working is by setting a key binding for the separate actions, such as ^D for deleteToEndOfLine:, then ^L for moveToBeginningOfLine:, giving you ^L+^D to give you the combined effect.

link|improve this answer
There are already some defaults to handle this. ^k for "delete to end of line", cmd-delete for "delete to beginning of line". – Klaas May 11 '11 at 12:22
feedback

If you don't mind having that key binding in other apps, you could try setting it in the general Cocoa key bindings. This has an explanation.

link|improve this answer
1  
I tried this already, but the global key bindings do not work in XCode 4. I tested them in TextMate and they work there. So I did the right modifications. – Klaas May 11 '11 at 12:12
feedback

seems as though it can't be done now... feel free to correct me if I am wrong... but here is my new solution...

go to xcode preferences, then the key bindings tab. duplicate the default set, so that you wont be mad at me when the suggestion that i make breaks something that you will use.

find 2 keys that are adjacent and not used for any commands that you use... ";","'" perhaps.(I don't use command n for new file, so I picked n,m)

set the first key to "Move to Begging of Line" and the second key to "Delete to end of line"

then use that sequence to delete a line...

alternate would be set something to select line, then just use delete.

link|improve this answer
feedback

After a lot of search here and there, I came to the following solution:

Press and hold control key, and then press AKK.

(Note: second K deletes the empty line).

Actually it is a combination of two commands: Move to Beginning of Paragraph & Delete to End of Paragraph. You may also use/set other key(s) and also may use/set/change key bindings for other command(s) e.g. Move to Beginning of Line & Delete to End of Line. I used the above (default) key bindings as they suited me.

link|improve this answer
Nice solution, but I really looking for a single shortcut. If I want to delete 5 lines in TextWrangler for example it's only pressing five times cmd-d. Strangely enough cmd-d is not used in Xcode... – Klaas May 24 at 18:48
feedback

Your Answer

 
or
required, but never shown

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