Re: binary installer

2016-12-11 Thread Todd Mars
All that's really needed is a script that tests and verifies each 
dependency and describes the issues when there is a problem.


On Sunday, December 11, 2016 at 12:30:20 PM UTC-5, Todd Mars wrote:
>
> 12/11/2016: 
> using google to search for the leo installer, gives references to 
> sourceforge download and a one-click windows installer 'leo.exe' or 
> 'leoapp.exe'.
> There is a zip file for 5.4.
> There is no 'leo.exe' or 'leoapp.exe' in that zip file. Where is this 
> located? Is this not working?
> Thanks!
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"leo-editor" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to leo-editor+unsubscr...@googlegroups.com.
To post to this group, send email to leo-editor@googlegroups.com.
Visit this group at https://groups.google.com/group/leo-editor.
For more options, visit https://groups.google.com/d/optout.


binary installer

2016-12-11 Thread Todd Mars
12/11/2016: 
using google to search for the leo installer, gives references to 
sourceforge download and a one-click windows installer 'leo.exe' or 
'leoapp.exe'.
There is a zip file for 5.4.
There is no 'leo.exe' or 'leoapp.exe' in that zip file. Where is this 
located? Is this not working?
Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"leo-editor" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to leo-editor+unsubscr...@googlegroups.com.
To post to this group, send email to leo-editor@googlegroups.com.
Visit this group at https://groups.google.com/group/leo-editor.
For more options, visit https://groups.google.com/d/optout.


Re: is there a command to turn off visual display of changes and then turn them back on?

2016-12-11 Thread Edward K. Ream
On Thu, Dec 8, 2016 at 11:28 AM, djc  wrote:

> Sorrynot very well formatted question.
>
> When I use the c.k.simulateCommand() method, it does an immediate redraw
> of the outline.  I would like to suppress the redraw until after I am done
> making changes.  I am looking at using position methods to do the same
> thing so that I control the redraw, but haven't had time to suss it out
> yet.
>

​As Terry says, using position methods will work, but these are low-level
methods.  Using Commander (c) methods will be more convenient, provided you
can make them do what you want them to do.

As Terry notes, there is one (and I think only one) performance issue to be
aware of: p.setDirty. p.v.setDirty is much faster.  Use p.v.setDirty unless
your @ nodes aren't being set dirty properly.

One more note: It's really important to understand that c.redraw() only
*requests* a redraw, to be done when the command completes.
c.k.simulateCommand does actually complete the command, which is why it's
not great to string several such calls together--you'll get multiple full
redraws.  If your script does need an immediate redraw, you can call
c.redraw_now().

HTH.

Edward

-- 
You received this message because you are subscribed to the Google Groups 
"leo-editor" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to leo-editor+unsubscr...@googlegroups.com.
To post to this group, send email to leo-editor@googlegroups.com.
Visit this group at https://groups.google.com/group/leo-editor.
For more options, visit https://groups.google.com/d/optout.


Re: Exception running Markdown_Importer

2016-12-11 Thread Edward K. Ream
On Fri, Dec 9, 2016 at 12:41 PM, Largo84  wrote:

> Terry, I added an addendum to my original post that I think indicates what
> caused the problem, the use of ``@@`` in the node headline. Not sure if
> that's a bug or a feature:-)
> ​
>

​Greetings from Northern Mississippi :-)

If you have ever written the .md file ​from Leo, the markdown writer will
use hash ('#') markup for all sections.  And even if not, @@ should never
affect underlining, which is limited to "=" or "-" characters.

My guess is that level is zero, so maybe the actual markup isn't the real
issue. Please send me the file, so I can see exactly what is happening.

EKR

-- 
You received this message because you are subscribed to the Google Groups 
"leo-editor" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to leo-editor+unsubscr...@googlegroups.com.
To post to this group, send email to leo-editor@googlegroups.com.
Visit this group at https://groups.google.com/group/leo-editor.
For more options, visit https://groups.google.com/d/optout.


Re: Why I don't use Leo more often

2016-12-11 Thread Edward K. Ream
On Fri, Dec 9, 2016 at 11:21 AM, john lunzer  wrote:

> Okay, I got it running by loading a single Leo file.
>

​Good.  Feel free to make other changes.  I suspect you are the only one
using the curses plugin.

As you can see, this plugin is a demo.  True curses support would be a
great addition.

EKR

-- 
You received this message because you are subscribed to the Google Groups 
"leo-editor" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to leo-editor+unsubscr...@googlegroups.com.
To post to this group, send email to leo-editor@googlegroups.com.
Visit this group at https://groups.google.com/group/leo-editor.
For more options, visit https://groups.google.com/d/optout.