What's New

* 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.

App 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.

iPhone Screenshots

(click to enlarge)

Tools for Xcode screenshot 1

App Changes

  • September 16, 2023 Initial release
  • November 03, 2023 New version 5.1
  • November 03, 2023 Price decrease: $2.99 -> FREE!
  • November 15, 2023 New version 5.2