Mercurial Hosting > editor
comparison scripts/luan_editor.sh @ 86:b6ef6aaa9f29 default tip
minor
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 27 Jun 2025 19:44:35 -0600 |
parents | 7f5b3824f4d4 |
children |
comparison
equal
deleted
inserted
replaced
85:ccc7fc9636ab | 86:b6ef6aaa9f29 |
---|---|
10 | 10 |
11 mkdir -p ~/.luan_editor | 11 mkdir -p ~/.luan_editor |
12 | 12 |
13 set +m | 13 set +m |
14 | 14 |
15 if [[ "$(uname)" == "Darwin" ]]; then # Mac crap | 15 if [[ "$(uname)" == "Darwin" ]]; then # Mac |
16 java -Ddictionaries="$DICTIONARIES" -Xdock:name="Luan Editor" -Duser.home="$HOME" -classpath "$CLASSPATH" luan.Luan classpath:luan_editor/editor.luan "$@" 2>&1 | grep --line-buffered -v 'NSRemoteView\|NSSavePanel' | tee ~/.luan_editor/error.log & | 16 java -Ddictionaries="$DICTIONARIES" -Xdock:name="Luan Editor" -Duser.home="$HOME" -classpath "$CLASSPATH" luan.Luan classpath:luan_editor/editor.luan "$@" 2>&1 | grep --line-buffered -v 'NSRemoteView\|NSSavePanel' | tee ~/.luan_editor/error.log & |
17 else | 17 else |
18 java -Duser.home="$HOME" -Ddictionaries="$DICTIONARIES" -classpath "$CLASSPATH" luan.Luan classpath:luan_editor/editor.luan "$@" 2>&1 | tee ~/.luan_editor/error.log & | 18 java -Duser.home="$HOME" -Ddictionaries="$DICTIONARIES" -classpath "$CLASSPATH" luan.Luan classpath:luan_editor/editor.luan "$@" 2>&1 | tee ~/.luan_editor/error.log & |
19 fi | 19 fi |