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.
|
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. |
|||||
|
|
The whole point is NOT to use the It's been bugging me ever since. However, it looks like someone else has found a solution that works: http://flexgraphix.com/blog/?p=62 In short, create a file
This will create two shortcuts: More information on Mac OS X key bindings: http://www.erasetotheleft.com/post/mac-os-x-key-bindings/ |
|||||||||||||||||
|
|
To delete a line: Control-A to go to the beginning of the line, then Control-K to delete it, and another time Control-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: Control+A to go to the beginning of the line, Shift+Down Arrow to select it, Command+C to copy and Command+Y 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) |
|||||
|
|
Delete a line like eclipse CTRL+D (tested on Xcode 4.5.1) : First of all, change these rights :
Open
Restart Xcode and open Xcode > Preferences > KeyBindings. Find your macro and define a shortkey :
|
|||||||||||||||
|
|
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:
In the Edit User Scripts Dialog:
Duplicate Line Up:
Duplicate Line Down:
|
|||||||
|
|
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): |
|||||||
|
|
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 :
|
||||
|
|
|
There's a solution for XCode4 line duplication over here I've also added line deletion to the plist:
|
|||
|
|
|
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. |
|||||||
|
|
If you already have customised your Xcode key bindings, you'll have to edit the file: |
|||
|
|
The solution by damien.flament works great and you may need set output to "Discard Output" see the pic below
P.S: I don't know how to comment his answer. |
|||
|
|
|
As said above, close XCode and insert following to
Start XCode and enjoy CTRL-SHIFT-D and CTRL-SHIFT-K. Works fine for me with XCode 3.2 |
||||
|
|