Skip to content

Instantly share code, notes, and snippets.

@felixrabe
Last active August 29, 2015 14:03
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save felixrabe/4a2673da8e203af824e6 to your computer and use it in GitHub Desktop.
Save felixrabe/4a2673da8e203af824e6 to your computer and use it in GitHub Desktop.
Reliable subl wrapper
#!/usr/bin/env bash
if [[ $# -eq 0 ]] ; then
subl -w . &
else
subl -w "$@" &
fi
sleep 1
kill $!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment