Is there a way to force XCode to trim trailing whitespaces when I save file?
I'm using version 3.1.3 if that matters.
|
Is there a way to force XCode to trim trailing whitespaces when I save file? I'm using version 3.1.3 if that matters. |
||||
|
|
|
You can create a script and bind it to a keyboard shortcut:
Then enter the following script:
|
|||||||||||||
|
|
I'm using the Google Toolbox For Mac Xcode Plugin, it adds a "Correct whitespace on save" parameter that trim trailing whitespace on save. I missed that a lot from emacs. |
|||||||||||||||||
|
|
Starting from Xcode 4.4 whitespaces will be trimmed automatically by default, unless the line is all whitespace. You can also activate Go to
|
||||
|
|
|
Cool, Google toolbox for Mac now adds a "trim whitespace" option for Xcode4. http://code.google.com/p/google-toolbox-for-mac/downloads/list Thanks you, Google! |
||||
|
|
|
This is not possible in Xcode 3.2 Edit: I answered this question so briefly because there's no way to do this properly. Of course, since it's software, you can do anything: Starting with Input Manager hacks or other ways of code injection to system wide keyboard interception, you can alter your local system to do anything anytime. You could set up an Applescript folder action (arrgh) or use a launch demon and the FSEvents facility to watch your source code files. You can also add a couple of scripts to Xcode (user scripts in the menu, script phases in targets, custom Actions in the organizer, there's even the very unknown possibility a startup script), but all these solutions are flawed, since it involves the user or custom setup on the user's machine. I'm not aware of a solution which simply works after checking out a project from SCM. I believe that there's need for this and similar customization scripts, so I filed a bug (radar 7203835, "Feature: more user script triggers in Xcode workflow"). I did not receive any feedback yet. Here's the full text of the radar entry:
|
|||||||||||||
|