UEStudio - All the features of UltraEdit plus the power of an IDE
UEStudio offers all the functionality of UltraEdit plus other powerful features. Whether you are building applications, maintaining databases, or constructing websites, UEStudio's innovative features offers the functionality of an IDE at an unsurpassed value.
Of course, all paid registrations come with 1 year of complimentary upgrades!
<
When an editor becomes more than an editor...
Announcing UEStudio v11.20!
UltraEdit represents pure text editing perfection. UEStudio has all the features of UltraEdit plus many sophisticated features like... class viewer, Intellitips, PHP debugging, integrated compiler support, SVN/CVS, and much more.
We are pleased to announce the biggest update of UEStudio this year! V11.20 delivers some of your most highly requested changes - from project and workspace management changes to display enhancements... from Find/Replace in Files to scripting and macro improvements... from syntax highlighting/wordfile improvements to FTP improvements... and beyond! If you haven't looked at UEStudio, now is the time!
New: Active column highlighting
If you work frequently in column mode, then you're going to love the new active column highlighting feature! The active column highlight works essentially the same as the active line highlight, indicating on what column the text insertion caret is positioned. This new feature is designed to help you quickly visually reorient your position within the active file.

You can toggle active column highlighting via toolbar, menu, or key mapping command. You can configure its color and state in View -> Set Colors.

Enhanced: Find in Files/Replace in Files functionality
Save time with the new "Open matching files" feature in v11.20! Need to open all files in a directory containing a target search string or regex? No problem; check the inconspicuous but convenient "Open matching files" option in in the Find in Files dialog and let UltraEdit open them for you.

Two new and welcome additions to Find in Files are the new "Dm" and "Dc" variables for output. The new "$Dm" and "$Dc" output format template options allow you to include a file's Date Modified and Date Created information (respectively) in the Find in Files output. You can configure this in Advanced -> Configuration -> Search -> Set Find Output Format.

New: Highlighting support for Python
Python lovers rejoice! This release includes a Python wordfile as part of wordfile defaults, so you can get syntax highlighting, brace matching, auto-indentation, function listing, etc., in your Python source files.

New: Editor display features
Sometimes small changes can be a big deal. We think this is the case with the new Selected Bytes/Lines feature; information that previously required a custom script to obtain is now readily available for you in the status bar. This feature will automatically activate in the "File Size" status bar space, and then restore file size information when the selection is canceled.

Another small but helpful improvement is the new file status icon set. Unsaved files now have a more obvious file tab indicator, while saved files are slightly more subdued. This increase in contrast is also helpful for users who may be colorblind.
New: Scripting functionality
Like the release before it, v11.20 includes some big additions to scripting. The following new scripting methods are available in v11.20 (these are also all available in macros):
UltraEdit.activeDocument.cancelSelect();
// moves caret to end of previous word
UltraEdit.activeDocument.gotoEndOfPrevWord();
// selects from current position to end of previous word
UltraEdit.activeDocument.gotoEndOfPrevWordSelect();
// moves caret to end of next word
UltraEdit.activeDocument.gotoEndOfNextWord();
// selects from current position to end of next word
UltraEdit.activeDocument.gotoEndOfNextWordSelect();
// converts UTF-8 file to ASCII
UltraEdit.activeDocument.UTF8ToASCII();
// converts ASCII file to UTF-8
UltraEdit.activeDocument.ASCIIToUTF8();





