Tools for Xcode


Tools for Xcode
Download on the AppStore Click here to request a review of this app

  • App Store Info

Description

Tools for Code adds some useful tools to improve your productivity and make your life easier.

For example, it will comment out or uncomment the first and the last lines of a block of code.

VStack {
Text("Hello, World")
}

Will be converted into this...

// VStack {
Text("Hello, World")
// }

...or vice versa. Fast and easy by pressing one keystroke.

Another functionality is the ability to embed a block of code by creating opening and closing brackets around the selected code.

This code

Text("Hello, world")

will be converted into this

{
Text("Hello, world")
}

This tool has now four functions:

1. Comment the first and last lines of a block of code.
2. Uncomment the first and last lines of a block of code.
3. Delete the first and last lines of a block of code.
4. Create curly braces around a block of code, if you want to embed the block into something.

This app is growing!

What are you waiting for?

Increase your productivity now.

What's New in Version 5.2

* we have added a new command: "delete both first and last lines of a selected block of code". Imagine you have a block of code embedded into a loop, VStack or something, anything inside curly braces. You can now select the block of code, including the curly braces and remove the curly braces, freeing the code from the embedding.

Screenshots

Screenshot 1 of 1