aboutsummaryrefslogtreecommitdiff
path: root/scripts/osx/ta
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/osx/ta')
-rwxr-xr-xscripts/osx/ta6
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