Anzeigen der neuesten Beiträge
0 Mitglieder und 2 Gäste betrachten dieses Thema.
Alternative FontAn alternative font is a second font you can switch to, e.g. if you want to display the text using a fixed or proportional font.* Set an alternative font for all file types in options.* Select an alternative font in the view menu.* Switch between fonts in view menu (or using keyboard shortcut).TODO listAdded a TODO list to the code explorer tab. It will find comments like // TODO // NOTE /* TODO ... */Please note that TODO or NOTE must be on the same line as the comment identifier and the letters must be capitalized.Search result context menuAdded a context menu in the search result view. It contains items to:Load from file... (load a previously saved file)Save to file... (save the result to an XML file)Export to text file... (save the results to a plain text file)Clear (clear the view)Replace All Undo/RedoRewrote the functions to use much less memory. If you use replace all repeatedly, you may end up with a very large undo buffer in previous versions.The difference with this new code is huge.Select/Delete functionsAdded several new select and delete functions.Select:- Sentence- to begin of sentence- to end of sentenceDelete:- Sentence- to begin of sentence- to end of sentenceAlso fixed select/delete to begin/end of line when using word wrap.Nested commentsFixed some issues with nested comments and made sure you can use comment identifiers that contain a line comment identifier.E.g.LineComment = 'CommentStart = '*CommentEnd = *'Auto Complete and Tag Complete VariablesYou can now define variables when creating completion items in a syntax file.E.g.In the syntax editor we can add the following items to the auto complete section:@myVar1- Item 1- Item 2- Item 3@myVar2- Item 1- Item 2MyClass1.- @myVar1- @myVar2- Item 6- Item 7Spell check dialogTags are now ignored when using the spell check dialog. attributes in XML tags are still checked.New script object (WStrings)This object can be used to store WideStrings (Unicode). It's basically a normal string list but uses WideStrings instead of ANSI strings.MiscI've fixed several issues and made several small improvements. Most changes should be listed in the forum.
In this version I've added:Project Class View* List all classes, class members and functions in your project files.* A project wide TODO list. NOTE's and TODO's are listed per file and there are 3 priorities, indicated by 3 different icons. To add a priority in your code you should enter something like below:// TODO,2 This todo has the priority 2// TODO This todo has the priority 1. You can also enter // TODO,1Code Explorer (TODO list)Made some changes to the TODO list.NOTE's and TODO's can have 3 priorities, indicated by 3 different icons. To add a priority in your code you should enter something like below:// TODO,2 This todo has the priority 2// TODO This todo has the priority 1. You can also enter // TODO,1Select to begin/end of screen lineAdded menu items to select to begin or end of screen line. In word wrap mode this function only select on the visible line. When word wrap is turned off this function work exactly the same as "Select to begin/end of line".Delete to begin/end of screen lineAdded menu items to delete to begin or end of screen line. In word wrap mode this function only delete on the visible line. When word wrap is turned off this function work exactly the same as "Delete to begin/end of line".Word CountAdded a word count function. Listed items in the result window are:Words:Characters:Spaces:Tabs:Lines:Blank lines:Largest line:The result is displayed in 2 columns."Total" for the entire document and"Selection" for inside the selected text.Delimiter Option with double click selectionAdded an option to change the characters limiting the selection made with a double mouse click.I've also added an option for Alt+Double click.Space and tab characters are always added automatically to the delimiter string.Alt+Double clickYou can now use Alt+Double mouse click to select text. You can set which symbols to limit the selection in options.Also fixed some issues like:* Undo/Redo in word wrap.* Random exception errors at close down.* Closing files was sometimes slow.* Closing program was sometimes slow.Plus a few issues reported in the forum.