Created
June 2, 2011 14:12
-
-
Save jillesvangurp/1004521 to your computer and use it in GitHub Desktop.
Start Jedit from the command line
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# bash function for opening files in jedit (http://www.jedit.org/) from the command line | |
# copy the line below in your .profile or .bashrc | |
# the nohup can be used to avoid closing the editor when you close the terminal window from which you launch | |
function jedit() { nohup java -Xms15M -jar /Applications/jEdit.app/Contents/Resources/Java/jedit.jar -reuseview "$@" > /dev/null 2> /dev/null &} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment