Skip to content

Instantly share code, notes, and snippets.

@peterjaap
Created December 15, 2016 14:16
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save peterjaap/87355e0bed3a28cdf56035fe513fa4b5 to your computer and use it in GitHub Desktop.
Save peterjaap/87355e0bed3a28cdf56035fe513fa4b5 to your computer and use it in GitHub Desktop.
Open text files from Iterm2 in PhpStorm by command+clicking on it
#!/bin/sh
# Open text files from Iterm2 in PhpStorm by command+clicking on it
# You will need the Remote call plugin in PhpStorm - https://plugins.jetbrains.com/plugin/6027
# And of course curl
# wget this and chmod +x it
# then move it to somwhere convenient in your path (such as /usr/local/bin)
# With respects to https://gist.github.com/trinitronx/f59a8308d42d71fdba41 for the basis for this
# iterm_open_with - open a URL, file from CWD, full path, or path with linenumber in default app or PhpStorm if text file
# For usage with iTerm2:
# In iTerm's Preferences > Profiles > Default > Advanced > Semantic History,
# choose "Run command..." and enter "/your/path/to/iterm_open_with \5 \1 \2".
# Usage: iterm_open_with $(pwd) filename [linenumber]
# $(pwd) = current working directory (either use `pwd` or $PWD)
# filename = filename to open
# lineno = line number
pwd=$1
file=$2
regex='https?://([a-z0-9A-Z]+(:[a-zA-Z0-9]+)?@)?[-a-z0-9A-Z\-]+(\.[-a-z0-9A-Z\-]+)*((:[0-9]+)?)(/[a-zA-Z0-9;:/\.\-_+%~?&@=#\(\)]*)?'
perl -e "if ( \"$file\" =~ m|$regex|) { exit 0 } else { exit 1 }"
if [ $? -ne 0 ]; then
# if it's not a url, try splitting by ':'
arr=($(echo $2 | tr ':' "\n"))
file=${arr[0]}
lineno=${arr[1]:-$3}
colno=${arr[2]:-${3##*:}}
[ -e "$file" ] || file=${pwd}/${file}
fi
file "$file" | grep -q "text"
if [ $? -ne 0 ]; then
/usr/bin/open $file
else
curl "http://localhost:8091?message=${file}${lineno:+:${lineno}}"
fi
@vjpr
Copy link

vjpr commented May 11, 2017

Note: This requires the Remote Call pystorm plugin. Works on @otherJetBrains IDEs too.

EDIT: Ah I see its mentioned at the top of the script.

@johnkary
Copy link

This script opens the file in PhpStorm, but in the background.
Add this line to focus PhpStorm after it opens the file:

open -a PhpStorm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment