• 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 v15.7.0 beta 5

December 14, 2015/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v15.7.0 beta 5.

Notes: In order to update automatically to future beta versions, please select Select Update Channel on the Help menu, and select Betas.

Updates from v15.7.0 beta 4 include:

Bug Fixes

  • Fixed certain bugs related to Find and Find in Files.

We would like to find as many bugs as possible before we release the new version. Please try it out now and let us know if you find any bugs.

To download or see changes, please go to the beta forum – EmEditor Professional v15.7.0 beta 5 released!.

Thank you for using EmEditor!

/wp-content/uploads/2022/12/logo-minified-margins-1.svg 0 0 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2015-12-14 15:58:002015-12-14 15:58:00EmEditor v15.7.0 beta 5

EmEditor v15.7.0 beta 4

December 11, 2015/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v15.7.0 beta 4.

Notes: In order to update automatically to future beta versions, please select Select Update Channel on the Help menu, and select Betas.

Updates from v15.7.0 beta 3 include:

New Options

  • The Default was added to the Regular Expression Engine drop-down list box in the Advanced dialog box.

Plug-in New Features

  • The Collapse All and Extract All commands were added to the context menu on the Symboo list of the Projects plug-in.

Bug Fixes

  • Fixed a certain bug related to Find in Files.
  • Fixed a certain bug of the Regular Expression Engine drop-down list box in the Advanced dialog box.

We would like to find as many bugs as possible before we release the new version. Please try it out now and let us know if you find any bugs.

To download or see changes, please go to the beta forum – EmEditor Professional v15.7.0 beta 4 released!.

Thank you for using EmEditor!

/wp-content/uploads/2022/12/logo-minified-margins-1.svg 0 0 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2015-12-11 16:55:042015-12-11 16:55:04EmEditor v15.7.0 beta 4

EmEditor v15.7.0 beta 3

December 10, 2015/in EmEditor Core/by Yutaka Emura
Read more
/wp-content/uploads/2022/12/logo-minified-margins-1.svg 0 0 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2015-12-10 15:03:422026-01-11 09:57:55EmEditor v15.7.0 beta 3

EmEditor v15.7.0 beta 2

December 7, 2015/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v15.7.0 beta 2.

Notes: In order to update automatically to future beta versions, please select Select Update Channel on the Help menu, and select Betas.

Updates from v15.7.0 beta 1 include:

New General Features

  • This version allows you to search and replace CR and LF separately.
  • If you try to search for a string containing r (CR) while the Treat CR and LF separately option is disabled, the prompt message “The search string contains CR. Do you want to enable the Treat CR and LF Separately option?” will appear now.
  • If the last line of the document is empty, regular expressions will not match the last line anymore.

New Options

  • The Treat CR and LF Separately command was added to the menu displayed when the > button is clicked next to the Find drop-down list box in the Find/Replace/Find in Files/Replace in Files dialog box.
  • The Treat CR and LF Separately button was added to the Find toolbar.
  • The Show the Start window when the Down key is pressed on a new document check box was added to the Customize Start Window dialog box.

New Commands

  • Treat CR and LF Separately (Find toolbar)

Plug-in API New Features

  • The EE_FIND_REPLACE message, Editor_FindReplace inline function, and FIND_REPLACE_INFO structure were added.

Macro New Features

  • The nExFlags parameter was added to the Find and Replace methods of the Selection object, and the eeExFindSeparateCRLF flag was added.

We would like to find as many bugs as possible before we release the new version. Please try it out now and let us know if you find any bugs.

To download or see changes, please go to the beta forum – EmEditor Professional v15.7.0 beta 2 released!.

Thank you for using EmEditor!

/wp-content/uploads/2015/12/treat_CR_LF_separately.png 643 816 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2015-12-07 16:14:222018-04-24 10:14:35EmEditor v15.7.0 beta 2

EmEditor v15.7.0 beta 1

November 30, 2015/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v15.7.0 beta 1.

Notes: In order to update automatically to future beta versions, please select Select Update Channel on the Help menu, and select Betas.

Updates from v15.6.1 include:

New General Features

  • You can now select Onigmo as the regular expression engine in addition to Boost.Regex. If Onigmo is selected as the regular expression engine, you can use character types such as p{Han}, p{Hangul}, p{Hebrew}, etc. To find more details about the Onigmo regular expression syntax, please view https://github.com/k-takata/Onigmo/blob/master/doc/RE and Unicode Properties https://github.com/k-takata/Onigmo/blob/master/doc/UnicodeProps.txt.

Test results

While Find, Replace, and Filter tasks using some regular expressions are much faster using Onigmo compared to Boost.Regex, Boost.Regex becomes faster with some other regular expressions. Since the development is still in progress, the test results might be changed in the future.

expression Boost.Regex Onigmo
positive lookbehind (?<=a)b 12.39 seconds 4.39 seconds
negative lookbehind (?<!a)b 18.20 seconds 4.40 seconds
positive lookahead a(?=b) 4.46 seconds 4.62 seconds
negative lookahead a(?!b) 6.73 seconds 4.78 seconds
character range [a-c] 9.89 seconds 7.00 seconds
selection john|jack|james 3.82 seconds 4.23 seconds
beginning of line ^”a 3.70 seconds 3.95 seconds

Filter, case insensitive, number of thread 4, 340 MB, 1.92 million line file

Windows 10 (64-bit) Core i7-4790 16GB RAM

New Options

    • The Regular Expression Engine drop-down list box was added to the Search tab of the Customize dialog box.

Bug Fixes

      • Fixed the bug of v15.6.x where the sample box was not updated in the Display tab of configuration properties.

Acknowledgement

We would like to thank K. Kosako (Oniguruma) and K. Takata (Onigmo) who created the amazing regular expression engine.

We would like to find as many bugs as possible before we release the new version. Please try it out now and let us know if you find any bugs.

To download or see changes, please go to the beta forum – EmEditor Professional v15.7.0 beta 1 released!.

Thank you for using EmEditor!

/wp-content/uploads/2015/11/search_regular_expression_engine.png 477 474 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2015-11-30 16:12:572018-04-24 10:14:35EmEditor v15.7.0 beta 1

EmEditor v15.6.1 released!

November 19, 2015/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v15.6.1.

Updates from v15.6.0 include:

New General Features

  • Further improved the speed of opening files. The speed to open a large file (809 MB – 2.02 GB) became 7% faster compared to v15.6.0, and 18% – 27% faster compared to v15.5.

Bug Fixes

  • Fixed the bug on v15.6.0 where the warning message might not have displayed and the lines containing invalid characters became blank when a file containing invalid characters was opened.

Please see EmEditor v15.6 New Features for details.

To update, you can select Check for Updates on the Help, or you can go to the Download page to download the newest version.

In order to reduce the installer size, the Help file is not included in the installer. You can view the Web Help with your browser, or download the separate Help file. If you would like to download the separate local Help file, please go to the Download Help page.

This version is available free if you have a lifetime license or if your maintenance plan is valid as of November 19, 2015. Your registration keys might be found in the Emurasoft Customer Center. The registration key for v15 is the same as the key for v14.

Please also read: Announcing our policy change to rapid development, and introducing a maintenance plan.

Thank you for using EmEditor!

/wp-content/uploads/2015/11/select_update_channel_dlg.png 218 352 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2015-11-19 15:30:482015-11-19 15:30:48EmEditor v15.6.1 released!

EmEditor v15.6.0 released!

November 18, 2015/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v15.6.0.

Updates from v15.5.1 include:

New General Features

  • Improved the speed of opening files. Compared to v15.5, the speed to open a large file (809 MB – 2.02 GB) became 12% – 23% faster.
  • You can now select the update channel. Selecting the beta channel will notify you all updates including betas.
  • The Quick Launch command now includes three modes: Commands (Ctrl + Shift + C), Options (Ctrl + Shift + O), and Symbols (Ctrl + Shift + S). Ctrl + Space to bring up the menu to change the mode.
  • The Quick Launch window can be opened as a modeless window. The toolbar in the Quick Launch window includes “Keep This Window Open” button instead of the “Close” button.
  • When multiple EmEditor groups exist, multiple configuration properties and/or Quick Launch windows can be displayed at once.
  • The Start window now moves along with the EmEditor window when moving the EmEditor window while the Start window is open.
  • The “Windows 10 has been detected. The View Source by EmEditor on Internet Explorer feature might have a conflict with Microsoft Edge…” warning message will not be displayed any more since Windows 10 Build 10586 fixes the Microsoft Edge bug.
  • The existing WrapTags.jsee macro was assigned to shortcut Ctrl + Shift + ,.
  • The following four macros were added.

New Macros

  • SymbolList.jsee (Displays the symbol list for the current source code)
  • GoToDefinition.jsee (Jumps to the definition of the function at the cursor, shortcut F12)
  • PopBrowseContext.jsee (Returns from the definition, shortcut Ctrl + Num *)
  • ParameterInfo.jsee (Displays the parameter information as a tooltip when the cursor is inside the parentheses of a function, shortcut Ctrl + Shift + Space)

New Options

  • The Show Fixed Pitch Fonts Only check box was added to the Customize Font dialog box.

New Commands

  • Select Update Channel
  • Tab/Indent Properties
  • New File Details Properties
  • Save File Details Properties
  • Quick Launch – Commands
  • Quick Launch – Options
  • Quick Launch – Symbols
  • Customize Macros – My Macros
  • Customize Macros – Options
  • Customize Markers – Marker List
  • Customize Markers – Auto Marker
  • Customize Markers – Options

Plug-in New Features

  • The Projects plug-in supports 7 new user messages. These new user message can be used by defining USE_PROJECTS_PLUGIN before including the plug-in.h.

Bug Fixes

  • Fixed the issue on v15.5.x where the standard input for external tools might not have worked correctly.
  • Fixed the bug where an error message could be displayed twice when a “file:” hyperlink is clicked and the file doesn’t exist.
  • Fixed the bug where Ctrl + Home could not scroll to the top when a CSV mode is selected and the heading is set.

Please see EmEditor v15.6 New Features for details.

To update, you can select Check for Updates on the Help, or you can go to the Download page to download the newest version.

In order to reduce the installer size, the Help file is not included in the installer. You can view the Web Help with your browser, or download the separate Help file. If you would like to download the separate local Help file, please go to the Download Help page.

This version is available free if you have a lifetime license or if your maintenance plan is valid as of November 18, 2015. Your registration keys might be found in the Emurasoft Customer Center. The registration key for v15 is the same as the key for v14.

Please also read: Announcing our policy change to rapid development, and introducing a maintenance plan.

Thank you for using EmEditor!

/wp-content/uploads/2015/11/select_update_channel_dlg.png 218 352 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2015-11-18 16:34:302015-11-19 12:32:09EmEditor v15.6.0 released!

EmEditor v15.6.0 beta 4

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

Today, we are releasing EmEditor v15.6.0 beta 4.

Notes: In order to update automatically to future beta versions, please select Select Update Channel on the Help menu, and select Betas.
If you have installed beta 2, the Update Checker might not work. Please click the link below to download and install beta 4.

Updates from v15.6.0 beta 3 include:

New General Features

  • The Quick Launch command now includes three modes: Commands (Ctrl + Shift + C), Options (Ctrl + Shift + O), and Symbols (Ctrl + Shift + S). Ctrl + Space to bring up the menu to change the mode.

New Commands

  • Tab/Indent Properties
  • New File Details Properties
  • Save File Details Properties
  • Quick Launch – Commands
  • Quick Launch – Options
  • Quick Launch – Symbols
  • Customize Macros – My Macros
  • Customize Macros – Options
  • Customize Markers – Marker List
  • Customize Markers – Auto Marker
  • Customize Markers – Options

Bug Fixes

  • Fixed the bug where Ctrl + Home could not scroll to the top when a CSV mode is selected and the heading is set.

We would like to find as many bugs as possible before we release the new version. Please try it out now and let us know if you find any bugs.

To download or see changes, please go to the beta forum – EmEditor Professional v15.6.0 beta 4 released!.

Thank you for using EmEditor!

/wp-content/uploads/2015/11/select_update_channel_dlg.png 218 352 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2015-11-15 20:42:382015-11-15 20:42:38EmEditor v15.6.0 beta 4

EmEditor v15.6.0 beta 3

November 12, 2015/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v15.6.0 beta 3.

Notes: In order to update automatically to future beta versions, please select Select Update Channel on the Help menu, and select Betas.
If you have installed beta 2, the Update Checker might not work. Please click the link below to download and install beta 3.

Updates from v15.6.0 beta 2 include:

New General Features

  • When multiple EmEditor groups exist, multiple configuration properties and/or Quick Launch windows can be displayed at once.
  • The “Windows 10 has been detected. The View Source by EmEditor on Internet Explorer feature might have a conflict with Microsoft Edge…” warning message will not be displayed any more since Windows 10 Build 10586 fixes the Microsoft Edge bug.
  • Sort commands were added to the Symbol list (displayed when ‘@’ is entered) in the Quick Launch window (CTRL + Q).
  • Fixed the issue with Update Checker with the beta channel. EmEditor will check updates according to the frequency settings even with the beta channel (undo to the beta 1 behavior).

Plug-in New Features

  • Sort commands were added to the right-click menu in the Symbol list in the Projects plug-in.

Bug Fixes

  • Fixed the bug where an error message could be displayed twice when a “file:” hyperlink is clicked and the file doesn’t exist.

We would like to find as many bugs as possible before we release the new version. Please try it out now and let us know if you find any bugs.

To download or see changes, please go to the beta forum – EmEditor Professional v15.6.0 beta 3 released!.

Thank you for using EmEditor!

/wp-content/uploads/2015/11/select_update_channel_dlg.png 218 352 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2015-11-12 18:37:212015-11-12 18:37:21EmEditor v15.6.0 beta 3

EmEditor v15.6.0 beta 1

November 4, 2015/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v15.6.0 beta 1.

Notes: In order to update automatically to future beta versions, please select Select Update Channel on the Help menu, and select Betas.

Updates from v15.5.1 include:

New General Features

  • You can now select the update channel. Selecting the beta channel will notify you all updates including betas.
  • The Quick Launch window (CTRL + Q) allows you to enter ‘@’ to show the symbol list for the current document source code, and ‘@’ plus a keyword to show the symbol list that contains the specified keyword from the current document.
  • The existing WrapTags.jsee macro was assigned to shortcut Ctrl + Shift + ,.
  • The following four macros are added.

New Macros

  • SymbolList.jsee (Displays the symbol list for the current source code)
  • GoToDefinition.jsee (Jumps to the definition of the function at the cursor, shortcut F12)
  • PopBrowseContext.jsee (Returns from the definition, shortcut Ctrl + Num *)
  • ParameterInfo.jsee (Displays the parameter information as a tooltip when the cursor is inside the parentheses of a function, shortcut Ctrl + Shift + Space)

New Options

  • The Show Fixed Pitch Fonts Only check box was added to the Customize Font dialog box.

New Commands

  • Select Update Channel

Plug-in New Features

  • The Projects plug-in supports 7 new user messages. These new user message can be used by defining USE_PROJECTS_PLUGIN before including the plug-in.h.

Bug Fixes

  • Fixed the issue on v15.5.x where the standard input for external tools might not have worked correctly.

We would like to find as many bugs as possible before we release the new version. Please try it out now and let us know if you find any bugs.

To download or see changes, please go to the beta forum – EmEditor Professional v15.6.0 beta 1 released!.

Thank you for using EmEditor!

/wp-content/uploads/2015/11/select_update_channel_dlg.png 218 352 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2015-11-04 16:04:532018-04-24 10:14:35EmEditor v15.6.0 beta 1
Page 51 of 77«‹4950515253›»

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