• Link to X Link to X Link to X
  • Link to Facebook Link to Facebook Link to Facebook
  • Link to Youtube Link to Youtube Link to Youtube
  • Link to Reddit Link to Reddit Link to Reddit
  • Link to Rss Link to Rss Link to Rss
  • Blog
  • Support
    • FAQ
    • Help (HTML)
    • Manual (PDF)
    • Forums (read-only)
    • Library (GitHub)
    • Update/Resend Registration Keys
    • Contact Us
  • About
    • About Emurasoft
    • Meet the Team
    • Other Products
    • Awards
    • Privacy Policy
    • Go to Emurasoft Customer Center
  • 🌐 English
    • 日本語
    • 한국어
    • Deutsch
    • 简体中文
    • 繁體中文
  • Download
  • Buy
  • Features
  • Menu Menu

EmEditor v23.0.3 released!

November 22, 2023/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v23.0.3.

v23.0.3 includes the following bug fixes.

  • Fixed issues where EmEditor might not be able to save workspaces, wrap lines, or show outlining if Keep Locked is selected from the Changed by Another Program drop-down list in the File page of configuration properties.
  • Fixed various crashes.

Please see EmEditor v23.0 New Features for details and screenshots.

If you use the Desktop Installer version, you can select Check for Updates on the Help to download the newest version. If this method fails, please download the newest version, and run the downloaded installer. If you use the Desktop portable version, you can go to the Download page to download the newest version. The Store App versions can be updated through Microsoft Store (64-bit or 32-bit) after a few days.

/wp-content/uploads/2023/11/view_web_browser.png 713 963 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2023-11-22 14:41:182023-11-22 14:41:42EmEditor v23.0.3 released!

EmEditor v23.0.2 released!

November 17, 2023/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v23.0.2.

v23.0.2 includes the following bug fixes.

  • Fixed a bug where macros may not run on default settings. The new version limits one single Web Browser even if multiple group windows exist.

Please see EmEditor v23.0 New Features for details and screenshots.

If you use the Desktop Installer version, you can select Check for Updates on the Help to download the newest version. If this method fails, please download the newest version, and run the downloaded installer. If you use the Desktop portable version, you can go to the Download page to download the newest version. The Store App versions can be updated through Microsoft Store (64-bit or 32-bit) after a few days.

/wp-content/uploads/2023/11/view_web_browser.png 713 963 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2023-11-17 16:26:062023-11-17 16:27:23EmEditor v23.0.2 released!

EmEditor v23.0.1 released!

November 16, 2023/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v23.0.1.

v23.0.1 includes the following bug fixes.

  • Fixed a bug where EmEditor could crash when opening a file as a specific file encoding such as Arabic or US-ASCII.
  • Fixed a bug where EmEditor could crash when showing the Web Browser bar in multiple group windows.

Please see EmEditor v23.0 New Features for details and screenshots.

If you use the Desktop Installer version, you can select Check for Updates on the Help to download the newest version. If this method fails, please download the newest version, and run the downloaded installer. If you use the Desktop portable version, you can go to the Download page to download the newest version. The Store App versions can be updated through Microsoft Store (64-bit or 32-bit) after a few days.

/wp-content/uploads/2023/11/view_web_browser.png 713 963 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2023-11-16 14:37:362023-11-16 14:37:37EmEditor v23.0.1 released!

EmEditor v23.0.0 released (including technical review)!

November 15, 2023/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v23.0.0.

While conventionally, this version should be named v22.6, due to numerous changes and being a truly major update, as well as being the last major update of the year, we decided to align with the last two digits of the year 2023 and name it v23.0.

Recent advancements in generative AI, including ChatGPT, have enabled the use of various information and services through web browsers. Among EmEditor users including this customer, there is a growing demand to use these web services directly within EmEditor, eliminating the need to use external browsers. In the new version, we have added a feature to display a web browser in a customer bar of EmEditor. This browser is designed to work in conjunction with macros, allowing users to send a portion of the document in the editor to a site displayed in the Web Browser or vice versa. To utilize these features, ensure that Use V8 as the JavaScript engine is selected in the Options page of the Customize Macros dialog, or add the following line at the beginning of each macro:


#language = "V8"

Two specific features have been added:

(1) web. keyword: To access the Document Object Model (DOM) of HTML, use the lowercase web. keyword. This distinction is necessary to differentiate between objects in EmEditor and objects in the Web Browser. For example, in a macro:


document.write( "Test" );

It is unclear whether “Test” should be displayed in the editor view of EmEditor or in the HTML of the Web Browser. To display “Test” in the Web Browser, add the web. prefix:


// Displays "Test" in Web Browser
web.document.write( "Test" );

With this syntax, keywords starting with web. are interpreted as instructions executed in the Web Browser, allowing access to the DOM. Examples include:


// Returns the URL of the current web page.
alert( web.location.href );

// Returns the preferred language of the browser.
alert( web.navigator.language );

// Pastes the text of the current web page into a new document.
editor.NewFile();
write( web.document.documentElement.innerText );

// Pastes the HTML of the current web page into a new document.
editor.NewFile();
write( web.document.documentElement.outerHTML );

(2) onLoad event: If the last executed macro contains a function starting with function onLoad(), it is called only once when the web page is updated or a new page is loaded. This functionality allows tasks such as retrieving search results on search sites. For example:


function onLoad() {
    // Retrieves the HTML of the page and pastes it into a new document.
    editor.NewFile();
    document.write( web.document.documentElement.outerHTML );  
}

The Bing.jsee macro example demonstrates how to retrieve and display specific information from HTML search results. Note that some search sites, like the free version of ChatGPT, may not trigger page updates or new page loads. In such cases, the onLoad() event does not occur, preventing the retrieval of search results using this event. Nevertheless, Makoto Emura came up with an idea to monitor an HTML element using the MutationObserver interface and retrieve the text when changes occur. The ChatGPT.jsee macro sample demonstrates how to retrieve responses from ChatGPT using this interface. If you run this macro as it is, the selected text is only entered into the ChatGPT prompt box. However, if you uncomment lines 99 to 100, it will actually send the text. Disclaimer: The format of Bing and ChatGPT responses may change at any time in the future, potentially affecting the functionality of these macros. The macros are intended solely to demonstrate the new features of EmEditor v23.0. We do not guarantee that these macros will work in the future.

Another major change in v23.0 is the optimization for handling large files. EmEditor users often deal with large CSV files, sometimes reaching several gigabytes. To ensure smooth performance even with such files, extensive testing was conducted on operations such as deleting, inserting, combining, sorting, and pasting columns. The commands were optimized by multi-threading and other optimization techniques, resulting in approximately 21 to 34 times faster performance compared to v22.5.

In the CSV Converter, previous versions lacked multi-threading code, causing slow performance with large files. The new version improves this by using multi-threading and SIMD code, making CSV format conversion even for multi-gigabyte files operate within a few seconds.

For Japanese (JIS) and Japanese (EUC), v23.0 abandons the use of the traditional Windows API object, MultiLanguage, in favor of a custom lookup table. This change enhances the detection logic for invalid characters and significantly improves the operation speed such as file opening and searching.

In v22.5, clicking the left edge of line numbers toggles the bookmark. Responding to user feedback, an option to disable this feature has been added in the Mouse page of the Customize dialog under Click the left edge of a line number to toggle the bookmark.

The Markdown configuration has been improved to allow more accurate representation of emphasis formatting, such as bold and italic, through the addition of special syntax.

Using the Language Server Protocol, Makoto Emura added a feature to format the selected string or entire document. This command, accessible through the Convert menu as Format (shortcut: Ctrl+K, F), eliminates inconsistencies such as the number of leading tabs or spaces and the position and presence of spaces around parentheses () or {} for improved readability. Users can select code to format, and if no selection is made, a dialog prompts whether to format the entire document. Or you may press Ctrl+K, D to format the entire document. To enable the Format command, the Language Server Protocol option must be enabled on the Language Server page of the Customize dialog box, and the desired language must be selected from the Document type drop-down list. Note that preferences for formatting, such as the presence of spaces around parentheses, depend on the language server and cannot be customized within EmEditor.

Starting from this version, the Language Server Protocol is officially supported for C++, CSS, HTML, JavaScript, JavaScript for EmEditor, Perl, and Python configurations. Users can disable this feature at any time in the settings on the Language Server page of the Customize dialog box.

Makoto enhanced the CommitList (Git) plugin by adding an Update Submodule option to pull changes to a submodule. He also removed the Undo Changes menu item from the staged files list (not unstaged files) in the CommitList sidebar to avoid confusion regarding expected behavior.

Finally, the traditional help system, which used an outdated design and was challenging to maintain, has been redesigned using Sphinx. The new help system is maintained and built on our GitHub page.

I hope you like EmEditor, whether you use the Professional or Free version. Please contact us or write in forums if you have any questions, feature requests, or any ideas in the future.

Thank you for using EmEditor!
— Yutaka Emura

Please see EmEditor v23.0 New Features for details and screenshots.

This release also includes all bug fixes while developing v23.0.

If you use the Desktop Installer version, you can select Check for Updates on the Help to download the newest version. If this method fails, please download the newest version, and run the downloaded installer. If you use the Desktop portable version, you can go to the Download page to download the newest version. The Store App versions can be updated through Microsoft Store (64-bit or 32-bit) after a few days.

/wp-content/uploads/2023/11/view_web_browser.png 713 963 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2023-11-15 14:10:472023-11-16 03:36:36EmEditor v23.0.0 released (including technical review)!

Interview article with CIO Korea (IDG) in Seoul was published!

September 12, 2023/in Reviews/by Yutaka Emura

Interview | Do you know the fast, large-capacity editor ‘EmEditor’? ··· Yutaka Emura, CEO, developer with 40 years of experience (Google translation)

Original: 인터뷰 | 빠른 대용량 편집기 ‘엠에디터’를 아시나요? ··· 40년 경력의 개발자 에무라 유타카 대표

/wp-content/uploads/2023/09/logo-cio.png 68 126 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2023-09-12 08:00:002023-09-12 08:00:01Interview article with CIO Korea (IDG) in Seoul was published!

Interview article with CNET Korea in Seoul was published!

September 12, 2023/in Reviews/by Yutaka Emura

[Interview] Yutaka Emura, CEO of Emurasoft, “EmEditor, the world’s fastest professional software” (Google translation)

Original: [인터뷰] 에무라 유타카 에무라소프트 대표 “엠에디터(EmEditor), 세계에서 가장 빠른 전문가용 SW”

/wp-content/uploads/2023/09/cnet_logo_wm.png 125 250 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2023-09-12 04:28:122023-09-12 04:28:12Interview article with CNET Korea in Seoul was published!

Working with CSV in EmEditor

August 29, 2023/in Journal/by Yutaka Emura

We have authored a guide that explains the CSV-related features in EmEditor. The purpose of this document is to assist you in locating all the necessary tools for effectively working with CSV files in EmEditor. The document also includes a comparison of the CSV size limits between EmEditor and Excel.

We also tested EmEditor and Excel in the categories of Opening files, Replacing, and Sorting. The test results demonstrated that EmEditor outperformed Excel by a margin of 14 to 40 times in all the tested categories.

For comprehensive details, please refer to our guide titled “Working with CSV in EmEditor” (PDF).

Disclaimer: We tested all apps as accurately as possible; however, all speeds depend on the tested computers, files, and other factors. All speeds may be improved in future app versions. We recommend that you install and compare these apps for yourself. Other factors, including the feature set, stability, usability, affordability, and design, should also be
considered when deciding which app to choose.

  • Working with CSV in EmEditor (PDF)

/wp-content/uploads/2009/04/logo_square.png 120 120 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2023-08-29 14:45:442023-08-29 14:45:45Working with CSV in EmEditor

Text Editor Speed Comparison for Large Files

August 21, 2023/in Journal/by Yutaka Emura

We published a Text Editor Speed Comparison in April 2009. However, numerous text editors have undergone significant updates and improvements since then. As a result, we have decided to conduct speed tests once again.

For this round of testing, we selected seven text editors known for their ability to support very large files, including EmEditor. We assessed these editors in various categories: Opening files, Searching, Replacing, Sorting, Saving, and Searching within Files. The test outcomes demonstrated that EmEditor outperformed the other editors by a margin of 2 to 187 times in all the tested categories.

You can find the detailed results in our Text Editor Speed Comparison (PDF).

Disclaimer: We tested all apps as accurately as possible; however, all speeds depend on the tested computers, files, and other factors. All speeds, as well as failed tests (including crashes, incomplete, and partial results), may be improved or resolved in future app versions. We recommend that you install and compare these apps for yourself. Other factors, including the feature set, stability, usability, affordability, and design, should also be considered when deciding which app to choose.

  • Text Editor Speed Comparison (PDF)
/wp-content/uploads/2009/04/logo_square.png 120 120 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2023-08-21 11:57:372023-08-21 12:32:53Text Editor Speed Comparison for Large Files

EmEditor v22.5.2 released!

August 8, 2023/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v22.5.2.

v22.5.2 includes the following bug fixes and improvements.

  • Fixed an issue related to Convert on the tooltip.
  • Fixed an issue related to the Function Bar.
  • Fixed various potential crashes.

Please see EmEditor v22.5 New Features for details and screenshots.

If you use the Desktop Installer version, you can select Check for Updates on the Help to download the newest version. If this method fails, please download the newest version, and run the downloaded installer. If you use the Desktop portable version, you can go to the Download page to download the newest version. The Store App versions can be updated through Microsoft Store (64-bit or 32-bit) after a few days.

/wp-content/uploads/2023/07/profile2_22.5.png 255 2046 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2023-08-08 14:39:502023-08-08 14:39:50EmEditor v22.5.2 released!

EmEditor v22.5.1 released!

August 1, 2023/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v22.5.1.

v22.5.1 includes the following bug fixes and improvements.

  • Fixed an issue related to Convert All on the tooltip.
  • Fixed an issue related to the Function Bar.
  • Fixed an issue related to file change notifications.
  • Fixed various potential crashes.

Please see EmEditor v22.5 New Features for details and screenshots.

If you use the Desktop Installer version, you can select Check for Updates on the Help to download the newest version. If this method fails, please download the newest version, and run the downloaded installer. If you use the Desktop portable version, you can go to the Download page to download the newest version. The Store App versions can be updated through Microsoft Store (64-bit or 32-bit) after a few days.

/wp-content/uploads/2023/07/profile2_22.5.png 255 2046 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2023-08-01 12:08:402023-08-01 12:08:41EmEditor v22.5.1 released!
Page 8 of 77«‹678910›»

Latest News

  • EmEditor v26.1.1 ReleasedMay 30, 2026 - 12:04 pm
  • Information Security Incident Response Awards
    Emurasoft Receives Excellence Award at the 11th Information Security Incident Response AwardsMay 29, 2026 - 5:56 pm
  • EmEditor v26.1.0 Released — Updated Certificate, Faster Performance and Enhanced AI FeaturesMay 6, 2026 - 10:53 am
  • EmEditor Logo
    EmEditor v26.1 preview releasedMay 4, 2026 - 8:50 am
  • Fraudulent Job Advertisements Misusing Emurasoft’s Name on Social MediaApril 28, 2026 - 11:15 am
  • Domain Changes as Part of Security ImprovementsApril 20, 2026 - 5:08 pm
  • EmEditor v26.0.3 ReleasedFebruary 23, 2026 - 12:07 pm
  • EmEditor v26.0.2 ReleasedFebruary 8, 2026 - 8:18 am

Categories

  • EmEditor Beta (165)
  • EmEditor Core (484)
  • EmEditor Preview (2)
  • General (63)
  • Journal (9)
  • Language Packs (8)
  • Macros (2)
  • Plug-ins (6)
  • Related Software (2)
  • Reviews (29)

Tags

award pricing review v7 v8 v9 v10 v11 v12 v13 v14 v14.9 v15.0 v15.1 v15.2 v15.7 v15.8 v15.9 v16.0 v16.1 v16.3 v16.7 v16.9 v17.0 v17.1 v17.2 v17.6 v17.8 v18.0 v18.3 v18.4 v18.6 v18.7 v18.8 v18.9 v19.2 v19.3 v19.4 v19.6 v19.8 v20.5 v22.2 v25 v26 website

Previous posts

  • May 2026 (4)
  • April 2026 (2)
  • February 2026 (5)
  • January 2026 (3)
  • December 2025 (3)
  • November 2025 (4)
  • September 2025 (1)
  • August 2025 (4)
  • July 2025 (1)
  • June 2025 (5)
  • May 2025 (3)
  • March 2025 (2)
  • January 2025 (2)
  • December 2024 (5)
  • November 2024 (1)
  • October 2024 (3)
  • September 2024 (1)
  • August 2024 (2)
  • July 2024 (1)
  • June 2024 (1)
  • May 2024 (3)
  • April 2024 (1)
  • March 2024 (4)
  • February 2024 (4)
  • January 2024 (2)
  • December 2023 (2)
  • November 2023 (5)
  • September 2023 (2)
  • August 2023 (4)
  • July 2023 (2)
  • June 2023 (1)
  • May 2023 (2)
  • April 2023 (4)
  • March 2023 (6)
  • February 2023 (2)
  • January 2023 (1)
  • December 2022 (5)
  • October 2022 (2)
  • August 2022 (2)
  • June 2022 (4)
  • May 2022 (2)
  • March 2022 (2)
  • February 2022 (4)
  • January 2022 (1)
  • December 2021 (1)
  • November 2021 (2)
  • October 2021 (2)
  • September 2021 (4)
  • August 2021 (3)
  • July 2021 (3)
  • June 2021 (2)
  • May 2021 (4)
  • March 2021 (2)
  • February 2021 (5)
  • January 2021 (4)
  • December 2020 (6)
  • November 2020 (3)
  • October 2020 (3)
  • September 2020 (5)
  • August 2020 (3)
  • July 2020 (4)
  • June 2020 (5)
  • May 2020 (7)
  • April 2020 (4)
  • March 2020 (6)
  • February 2020 (9)
  • December 2019 (7)
  • November 2019 (6)
  • October 2019 (4)
  • September 2019 (7)
  • August 2019 (4)
  • July 2019 (6)
  • June 2019 (6)
  • May 2019 (10)
  • April 2019 (7)
  • March 2019 (14)
  • February 2019 (7)
  • January 2019 (6)
  • December 2018 (4)
  • November 2018 (9)
  • October 2018 (9)
  • September 2018 (9)
  • August 2018 (8)
  • July 2018 (3)
  • June 2018 (11)
  • May 2018 (8)
  • April 2018 (8)
  • March 2018 (1)
  • February 2018 (4)
  • January 2018 (4)
  • December 2017 (4)
  • November 2017 (1)
  • October 2017 (10)
  • September 2017 (3)
  • August 2017 (9)
  • July 2017 (6)
  • June 2017 (6)
  • May 2017 (8)
  • April 2017 (8)
  • March 2017 (3)
  • February 2017 (4)
  • January 2017 (5)
  • November 2016 (5)
  • October 2016 (8)
  • September 2016 (4)
  • August 2016 (2)
  • July 2016 (3)
  • June 2016 (10)
  • May 2016 (8)
  • April 2016 (7)
  • March 2016 (4)
  • February 2016 (5)
  • January 2016 (4)
  • December 2015 (8)
  • November 2015 (6)
  • October 2015 (7)
  • September 2015 (5)
  • August 2015 (5)
  • July 2015 (9)
  • June 2015 (3)
  • May 2015 (7)
  • April 2015 (11)
  • March 2015 (11)
  • February 2015 (9)
  • January 2015 (6)
  • December 2014 (3)
  • November 2014 (1)
  • October 2014 (7)
  • September 2014 (3)
  • August 2014 (4)
  • July 2014 (4)
  • June 2014 (3)
  • May 2014 (2)
  • April 2014 (7)
  • March 2014 (1)
  • February 2014 (3)
  • January 2014 (6)
  • December 2013 (3)
  • November 2013 (3)
  • October 2013 (4)
  • September 2013 (3)
  • August 2013 (1)
  • July 2013 (1)
  • June 2013 (5)
  • February 2013 (3)
  • December 2012 (3)
  • October 2012 (5)
  • September 2012 (4)
  • February 2012 (2)
  • January 2012 (2)
  • December 2011 (1)
  • November 2011 (2)
  • October 2011 (1)
  • September 2011 (2)
  • August 2011 (3)
  • July 2011 (1)
  • June 2011 (1)
  • May 2011 (3)
  • April 2011 (1)
  • March 2011 (2)
  • January 2011 (1)
  • December 2010 (1)
  • November 2010 (1)
  • October 2010 (1)
  • September 2010 (4)
  • August 2010 (1)
  • June 2010 (8)
  • May 2010 (2)
  • April 2010 (1)
  • March 2010 (2)
  • February 2010 (2)
  • January 2010 (5)
  • December 2009 (2)
  • November 2009 (6)
  • October 2009 (3)
  • August 2009 (1)
  • April 2009 (2)
  • March 2009 (1)
  • February 2009 (1)
  • January 2009 (2)
  • December 2008 (2)
  • November 2008 (1)
  • October 2008 (1)
  • August 2008 (1)
  • July 2008 (2)
  • June 2008 (4)
  • May 2008 (2)
  • April 2008 (2)
  • March 2008 (3)
  • February 2008 (1)
  • January 2008 (2)
  • December 2007 (2)
  • April 2007 (1)
  • January 2007 (4)
  • December 2006 (3)
  • November 2006 (1)
  • October 2006 (3)
  • September 2006 (5)

Download and try the “world's fastest text editor” now. (Source: ZDNet)

Download Download Free Download

Copyright © 1995-2026 by Emurasoft, Inc.
Download | Buy | Features | Blog | Support | About | Privacy Policy
日本語 | Deutsch | 한국어 |简体中文 | 繁體中文

Scroll to top Scroll to top Scroll to top