Skip to content

Instantly share code, notes, and snippets.

@jillesvangurp
Created June 2, 2011 14:12
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Start Jedit from the command line
# 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