Mercurial Hosting > editor
view luan_editor.sh @ 40:38bc1cdf77c8 default tip
add align windows
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 15 May 2025 19:12:46 -0600 |
parents | b7ff52d45b9a |
children |
line wrap: on
line source
#!/bin/bash EDITOR_HOME=`dirname $0` export DICTIONARIES=$EDITOR_HOME/dictionaries/ . luan string: CLASSPATH=$CLASSPATH:$EDITOR_HOME/lib/jortho.jar:$EDITOR_HOME/src set +m java -Xdock:name="Luan Editor" -classpath $CLASSPATH luan.Luan classpath:luan_editor/editor.luan "$@" 2>&1 | grep --line-buffered -v 'openAndSavePanelService' &