On Fri, Apr 11, 2008 at 1:05 PM, TL <[EMAIL PROTECTED]> wrote:
> Has anybody developed a method for choosing which local Leo branch to
> use when opening a .leo file? I assume this capability is often
> needed by Leo developers.
My thoughts exactly, just today I created a script for starting Leo to do this:
[EMAIL PROTECTED] ~
$ cat ~/bin/leo
#!/bin/bash
if [ "$1" == "--trunk" ]; then
shift
python /home/dan/bin/leo-editor/trunk/leo/src/leo.py "$1"
else
python /home/dan/bin/leo-editor/dot-config/leo/src/leo.py "$1"
fi
Not fancy but does what I want.
Dan
--
www.whiteaudio.com or http://twain.unl.edu
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"leo-editor" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/leo-editor?hl=en
-~----------~----~----~----~------~----~------~--~---