Title: Signature.html
I'm really just starting with pythonwin editor, after having used IDLE.
Comments interspersed.

Alan Gauld wrote:
"Wayne Watson" <sierra_mtnv...@sbcglobal.net> wrote

I'm using pythonWin. Is there some way to skip from the start of a def to the end? 

That doesn't seem to be supported.

"in the help structure"?  This, in Tutorial section of Help documentation?
============= start image

============= end image

I did find key bindings in Help, but see nothing about skipping to the end of a block. It seems like this should be a feature. I'm looking at someone else's code, and some def blocks go well over a page.  I just keep looking for the margin seems to fold back.  See my comments about vi in my recent post above this one.

The documentation is found in the help structure under PyWin32 Documentation
   -Pythonwin and win32ui
       -Overviews
           -Keyboard Bindings

If using Pythonwin keyboard commands you should look at the docs for the underlying editing widget Scintilla:

This is unfamiliar territory.
http://www.scintilla.org/SciTEDoc.html

That reveals quite a number of extra navigation commands.
The nearest to what you want is next paragraph (Ctr-] )
Pythonwin does modify a few of the standard commands so you need to look in the Pythonwin help first then at Scintilla.

But I'm surprised there are no block movement commands given Scintilla's primary goal of supporting programmers

You can of couse use the folding feature to speed navigation between functions etc... Keypad * will fold/unfold everything...
Interesting, but it folds way too much.

HTH,


--
           Wayne Watson (Watson Adventures, Prop., Nevada City, CA)

             (121.01 Deg. W, 39.26 Deg. N) GMT-8 hr std. time)
            
         Copper and its alloys have been found effective in hospital
         sinks, hand rails, beds, ... in significantly reducing 
         bacteria. Estimates are 1/20 people admitted to a hospital
         become infected, and 1/20 die from the infection.
                       -- NPR Science Friday, 01/16/2009 

                    Web Page: <www.speckledwithstars.net/>
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to