New in Version 23.0

November 15, 2023

New General Features

  • Redesigned help pages. Starting with this version, the local Help format was transitioned from a single CHM file to multiple HTML files.
  • Added the ability to show the embedded Web Browser within EmEditor using the WebView2 control. The initial home URL can be customized in the new Web Browser page of the Customize dialog box. The Web Browser is designed to be used in conjunction with macros. Writing a macro enables you to send specific text to a website. You can use web to access the Document Object Model (DOM) in the web page, For instance, web.document.documentElement.outerHTML retrieves the HTML of the current web document. The onLoad event enables you to retrieve specific text from the web page when it is loaded. Please refer to the Bing.jsee macro example to see how the new features can be utilized. [P]
  • Added the ability to format the selection or entire document using the Language Server Protocol (Format Document and Format Selection commands). [P]
  • Improved the Markdown syntax highlighting by adding the special syntax for Markdown.
  • Improved invalid character detections while opening Japanese (JIS) or Japanese (EUC) files.
  • Improved invalid format detections while operating on CSV Converter.
  • Improved the speed of Delete Columns, Insert Column Right/Left, Combine Columns, Sort Columns, Paste, and other commands while working on the CSV mode. [P]
  • By default, improved the speed of Uppercase, Lowercase, and other conversion commands for very large numbers of replacements by eliminating the use of temporary files and enabling disk-based file operations.
  • Improved the speed of various operations while opening a very large file in Japanese (JIS) or Japanese (EUC).

Test results:

v22.5v23.0Comparison
Delete Column [*A]12.3 seconds0.570 seconds21.6 times faster
Insert Column Right [*A]14.1 seconds0.627 seconds22.5 times faster
Paste a column [*A]24.6 seconds0.719 seconds34.2 times faster
CSV Converter (Comma separated to Tab separated) [*A]11.8 seconds0.872 seconds13.5 times faster
CSV Converter (Comma separated to Fixed width columns) [*A]52.3 seconds1.75 seconds29.9 times faster
Uppercase [*B]8.43 seconds0.866 seconds9.73 times faster
Find with Count Matches on Japanese (JIS) [*C]0.897 seconds0.070 seconds12.8 times faster

*A: 1.99 GB, 15.9 million lines, random ASCII CSV file.
*B: 1.34 GB , 100 million lines, random ASCII text file.
*C: 1.02 GB, 3.42 million lines, Japanese (JIS) text file.
All: Default options except the Always Discard Lengthy Undo Information to Accelerate option on, Windows 11, Core i7-13700, 80 GB RAM.

New Options

  • The Use Temporary Files to Reduce Memory Usage check box was renamed to Enable Disk-Based, and Minimum File Size to use Temporary File text box was renamed to Minimum File Size to Enable Disk-Based in the Advanced page of the Customize dialog box. [P]
  • Added the Use temporary files while editing check box to the Advanced page of the Customize dialog box. [P]
  • Removed the Auto check box from the Advanced page of the Customize dialog box. [P]
  • Added the Web Browser page to the Customize dialog box. [P]
  • Added the Click the left edge of a line number to toggle the bookmark check box to the Mouse page of the Customize dialog box. [P]
  • Added the Show hover tooltip check box to the Language Server page of configuration properties. [P]
  • Added the Markdown to the Special Syntax drop-down list box in the Highlight (2) page of configuration properties.
  • Added the Truncate strings if longer than column width and Warn if invalid format detected check boxes to the CSV Converter.

New Commands

  • Web Browser [P]
  • Customize Web Browser [P]
  • Format Document (Ctrl+K, D) [P]
  • Format Selection (Ctrl+K, F) [P]

Plug-in New Features

  • The changes sidebar in CommitList has an Update Submodule option to pull changes to a submodule.
  • Removed Undo Changes menu item in the staged files list (not unstaged files) in the CommitList sidebar to avoid confusion on expected behavior.
  • Added the EI_SET_WEB and EI_OPEN_WEB flags to the EE_INFO message.
  • LFI_USE_TEMP_FILE was renamed to LFI_USE_DISK_MODE, LFI_DONT_USE_TEMP_FILE was renamed to LFI_DONT_USE_DISK_MODE for the LOAD_FILE_INFO_EX structure.
  • Added the CSV_TRUNCATE_UNFIT and CSV_PROMPT_INVALID flags to the CONVERT_CSV_INFO structure.

Macro New Features

  • Added the WebBar object.
  • Added the LanguageServerProp object.
  • Added the LanguageServer property to the Config object.
  • Added the WebBar property to the Window object.
  • Added the onLoad event.
  • eeUseTempFile was renamed to eeUseDiskMode, eeDontUseTempFile was renamed to eeDontUseDiskMode for the OpenFile method.
  • Added the eeCsvTruncateUnfit and eeCsvPromptInvalid to the ConvertCsv method.

Notes

  • [P] EmEditor Professional only