Also if it helps with the "bug" I've been experiencing. I also see the same 
behavior (of the GUI not updating) when I using Ctrl+Up or Ctrl+Down (which 
is the swap line command) when in the body. If I hold down this command it 
will visually update the first two swaps/moves but then will stop updating 
until I've let go of the keys and when Leo finally visually updates the 
line has moved much further down the body. So it's not isolated to the 
outline.

On Thursday, May 28, 2015 at 3:26:05 PM UTC-4, john lunzer wrote:
>
> Not as if anyone is actually interested but I implemented 
> goto-next-N-visible in a much faster way:
>
> @language python
>
> N=5
>
> def getVisNextN(n):
>
>     current = c.p
>
>     for ind in range(n):
>
>         forward = current.getVisNext(c)
>
>         if forward != None:
>
>             current = forward
>
>     return current
>
>    
>
> NAhead = getVisNextN(N)
>
> c.setCurrentPosition(NAhead)
>
> c.redraw()
>
> I find this extremely useful (when bound to a key shortcut) for quickly 
> navigating an outline when lots of nodes are expanded. Can be easily 
> modified for goto-prev-N-visible.
>
> On Thursday, May 21, 2015 at 6:22:35 AM UTC-4, Edward K. Ream wrote:
>>
>> On Wed, May 20, 2015 at 11:40 AM, john lunzer <lun...@gmail.com> wrote:
>>
>>> Thanks for the report. Edward what is your setup? Are you on windows or 
>>> linux?
>>>
>>
>> ​Both.  I do most of my work on Windows because the fonts are clearer and 
>> sharper on that machine.  Soon after a commit I'll rerun all unit tests on 
>> the Linux machine.
>>
>> 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 http://groups.google.com/group/leo-editor.
For more options, visit https://groups.google.com/d/optout.

Reply via email to