diff options
author | 2013-11-20 22:12:31 -0500 | |
---|---|---|
committer | 2013-11-20 22:12:31 -0500 | |
commit | 408d71259bbd5bad7f1aa9a232904038f623598b (patch) | |
tree | b51c066ea0154057943397a7da11e0115b18838d /scripts/osx/ta | |
parent | d7b41ac77673a9205ba909aea524f267bf159e87 (diff) | |
download | textadept-408d71259bbd5bad7f1aa9a232904038f623598b.tar.gz textadept-408d71259bbd5bad7f1aa9a232904038f623598b.zip |
Look for `~/.textadept/osx_env.sh` for OSX environment variables.
Also clarified `ta` launcher since `--help` is unavailable.
Diffstat (limited to 'scripts/osx/ta')
-rwxr-xr-x | scripts/osx/ta | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/osx/ta b/scripts/osx/ta index 9b2d8f43..8cf9f28f 100755 --- a/scripts/osx/ta +++ b/scripts/osx/ta @@ -3,8 +3,10 @@ if [[ "$1" == "-h" || "$1" == "--help" ]]; then echo "ta - shell script to launch Textadept.app" - echo "Usage: ta [args] [filenames]" - echo "Run textadept --help for available args." + echo "Usage:" + echo "ta [filenames] open the given filenames in Textadept" + echo "ta [args] [filenames] open the given filenames in a new instance of" + echo " Textadept with the given arguments" elif [ "${1:0:1}" == "-" ]; then open -n -a Textadept.app --args $@ else |