Hi there! I have uploaded a new Version (v1.11).
Download
Here is the changelog:
v1.11
fixed: unintended scrolling after a textblock is folded/unfolded
fixed: folded textblock not unfolded, when text is edited
fixed: numpad return key not responding in linux
fixed: typo "laguage" renamed to "language"
fixed: autocomplete scrollbar not working
changed: the version number now has only two parts
changed: CanvasGadget with flag "#PB_Canvas_Container". The ScrollBars now are added to the views CanvasGadget
changed: added a ContainerGadget as parent for all views
changed: added Procedure PBEdit_Container(ID) to get the ID of the ContainerGadget
changed: removed x,y,width,height from TE_STRUCT since these values can be obtained from the ContainerGadget
changed: #TE_SyntaxCheck to #TE_SyntaxHighlight
changed: #TE_Flag_... to #TE_Syntax_... and #TE_Parser_...
changed: TE_COLORSCHEME/defaultTextColor to TE_COLORSCHEME/defaultText
changed: TE_COLORSCHEME/selectedTextColor to TE_COLORSCHEME/selectedText
changed: the blinking of the cursor is now controlled via thread (Draw_CursorThread) - enable "Create threadsafe executable" in the compiler options!
if the value "cursorBlinkDelay" in the settings file is "0" the cursor is not blinking at all
changed: reduced unnecessary redrawing of unmodified textlines (less CPU usage when idle)
changed: renamed procedure Event_Resize to Editor_Resize
changed: improved speed of dictionary update
changed: improved syntax highlighting
added: PostEvent #TE_Event_Redraw with #TE_EventType_RedrawAll or #TE_EventType_RedrawChangedLines
added: Structure TE_REPEATEDSELECTION
added: TE_REPEATEDSELECTION\minCharacterCount: number of consecutive characters that have to be selected to highlight repeated selections
added: flag #TE_RepeatedSelection_WholeWord: highlight the whole word if Nr. of selected characters >= TE_REPEATEDSELECTION\minCharacterCount
added: flag #TE_EnableHorizontalFoldLines: if true, display a horizontal line over and under a foldable textblock
added: flag #TE_EnableSelection: enable/disable selecting of text
added: flag #TE_EnableAlwaysShowSelection: enable/disable display selection if not active gadget
added: flag #TE_EnableAutoClosingKeyword: enable/disable insertion of closing keyword after Tab-Key is pressed twice