B
Qx @ s d Z ddlZddlmZ ddlZddlmZmZ ddl m
Z
dddd d
ddd
ddddhZedfddZ
dd ZG dd dZe edkrddlmZ edddd dS )a; codecontext - display the block context above the edit window
Once code has scrolled off the top of a window, it can be difficult to
determine which block you are in. This extension implements a pane at the top
of each IDLE edit window which provides block structure hints. These hints are
the lines which contain the block opening keywords, e.g. 'if', for the
enclosing block. The number of hint lines is determined by the maxlines
variable in the codecontext section of config-extensions.def. Lines which do
not open blocks are not shown in the context hints pane.
N)maxsize)NSEWSUNKEN)idleConfclassdefifelifelsewhilefortryexceptfinallywithasyncz^(\s*)(\w*)c C s | | S )z>Extract the beginning whitespace and first word from codeline.)matchgroups)codelinec r 8/opt/alt/python37/lib64/python3.7/idlelib/codecontext.pyget_spaces_firstword s r c C sF t | \}}t|}t| |ks,| | dkr0t}|tko:|}|| |fS )zReturn tuple of (line indent value, codeline, block start keyword).
The indentation of empty lines (or comment lines) is INFINITY.
If the line does not start a block, the keyword value is False.
#)r lenINFINITYBLOCKOPENERS)r ZspacesZ firstwordindentopenerr r r
get_line_info s r c @ sv e Zd ZdZdZdd Zdd Zedd Zd d
Z ddd
Z
dddZdd ZdddZ
dd Zdd Zdd ZdS )CodeContextz,Display block context above the edit window.d c C s || _ |j| _| dS )a
Initialize settings for context block.
editwin is the Editor window for the context block.
self.text is the editor window text widget.
self.context displays the code context text above the editor text.
Initially None, it is toggled via <