#BBUncrustifyPlugin-Xcode
Xcode plugin to uncrustify code in Xcode.
Tested with Xcode 3.2.6 on OS X 10.6.8.
-
Build the Xcode project. The plug-in will automatically be installed in
~/Library/Application Support/Developer/Shared/Xcode/Plug-ins
. -
Relaunch Xcode.
To uninstall, just remove the plugin from ~/Library/Application Support/Developer/Shared/Xcode/Plug-ins
and restart Xcode.
-
Use the menu
Edit > Uncrustify Selection
to uncrustify the selected source code (multiple selection is not supported). -
Use the menu
Edit > Uncrustify Selected Files
to uncrustify the selected items in the project navigator. -
Use the menu
Edit > Uncrustify Active File
to uncrustify the source file actually opened in the editor. -
Use the menu
Edit > Uncrustify Selected Lines
to uncrustify the selected source code (multiple selection is supported). The selection is automatically extended in full lines. If the selection is empty, it uses the line under the cursor.
PS: Modifications are recorded in the undo. So undo reverts the modifications.
You can create keyboard shortcuts for the menu items in the Keyboard Preferences of OS X System Preferences.
By default, the plugin uses the configuration file uncrustify.cfg
found in the bundle.
To customize the configuration, copy the file uncrustify.cfg
or your own to:
uncrustify.cfg
in the same directory of your.xcodeproj
file or~/.uncrustifyconfig
or~/uncrustify.cfg
A configuration file named uncrustify.cfg
or .uncrustifyconfig
can be defined for a project, a workspace or a Xcode container folder (folder with the yellow icon in the Xcode files navigator).
The lookup of the configuration file is made in this order:
- Closest Xcode container folder ancestor.
- Closest Xcode project file ('.xcodeproj') folder ancestor.
- Closest Xcode workspace file ('.xcworkspace') folder ancestor.
Example:
|-- workspace.xcworkspace
|-- uncrustify.cfg
|-- project folder
|---- project.xcodeproj
|---- Third Party Library Folder
|------ uncrustify.cfg
|-- An other project folder
|---- An other project.xcodeproj
|---- uncrustify.cfg
A more easy way to edit the configuration is to use the Mac appplication UncrustifyX.
Once UncrustifyX is installed, the plugin will add a menu item Open with UncrustifyX
to open the actual source code and configuration in UncrustifyX.
After uncrustification, the plugin:
-
performs a syntax-aware indenting if checked in the Xcode preferences (Preferences > Indentation > Syntax-aware indenting).
-
Trims trailing whitespaces and white-only lines if not checked in the Xcode preferences (Preferences > Google > Correct Whitespace On Save).
BBUncrustifyPlugin is available under the MIT license. See the LICENSE file for more info.