DEV Community

Coder
Coder

Posted on β€’ Originally published at itscoderslife.wordpress.com on

Open project in finder from Xcode

After being accustomed to the ease of opening terminal from Xcode, I created few more shortcuts for all my favorite Xcode users. One of them is Open in the finder with single shortcut from anywhere in Xcode.

YES! A Shortcut to open current project in finder

This is how you do it. It’s a one time setup. Just like you did it for Opening terminal

  1. Create a 2 line shell script and give the file execute permission.
  2. Go to Xcode Preferences.
  3. Add a Behavior in Xcode. Name it and give a shortcut key.
  4. On the right side details pane check the Run option.
  5. From the adjacent drop-down menu choose the script you just saved in step 1.

Script:

#!/bin/bash
open .

Command to give execute permission:

chmod +x /path/to/the/open_in_finder.sh

If you are lazy like me here’s the gist, download and use it: https://gist.github.com/itscoderslife/a671519577ac93fca55a506be7f2247a

Hope this is helpful.

Other shortcuts

Open in terminal

Open Derived Data folder

Happy coding πŸ˜‰

inspiration courtesy: The in-built Terminal of Visual Studio Code by Microsoft

.gist table { margin-bottom: 0; }



Damodar Shenoy's DEV Profile

Postmark Image

Speedy emails, satisfied customers

Are delayed transactional emails costing you user satisfaction? Postmark delivers your emails almost instantly, keeping your customers happy and connected.

Sign up

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

πŸ‘‹ Kindness is contagious

Please leave a ❀️ or a friendly comment on this post if you found it helpful!

Okay