Find dialog box

EmEditor v16.0.0 beta 3

Today, we are releasing EmEditor v16.0.0 beta 3.

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

Updates from v16.0.0 beta 2 include:

New Options

  • The Column text box was added under the Tag Format in the Edit tab of the Customize dialog box.

Bug Fixes

  • Fixed certain bugs related workspaces.

To Download

  • 64-bit installer
  • 32-bit installer
  • 64-bit portable
  • 32-bit portable
  • These files will be deleted when official release versions become available. The official releases can be downloaded at the Download page.

    Please post any questions or comments at Beta Forums.

    Thank you for continue using EmEditor!

    Find dialog box

    EmEditor v16.0.0 beta 2

    Today, we are releasing EmEditor v16.0.0 beta 2.

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

    Updates from v16.0.0 beta 1 include:

    New General Features

    • The new version does not include line numbers when only file names are extracted in the Find dialog box or Find in Files dialog box.
    • By default, the following tag formats are supported now.
    •    C:\…\filename.txt: (file name only)
    •    C:\…\filename.txt(5:3): (line 5, column 3)

    New Options

    • The default value for the Maximum Memory Size in the Advanced tab of the Customize dialog box become 90%.

    Plug-in API New Features

    • The EI_GET_UNTITLED flag was added.

    Macro New Features

    • The Untitled property was added to the Document object.

    Bug Fixes

    • Fixed certain bugs related to the CSV cell mode.
    • Improved the behavior when a critical error in file read/write occurs.
    • Fixed certain bugs related to the CSV cell mode.

    To Download

  • 64-bit installer
  • 32-bit installer
  • 64-bit portable
  • 32-bit portable
  • These files will be deleted when official release versions become available. The official releases can be downloaded at the Download page.

    Please post any questions or comments at Beta Forums.

    Thank you for continue using EmEditor!

    Find dialog box

    EmEditor v16.0.0 beta 1

    Today, we are releasing EmEditor v16.0.0 beta 1.

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

    Updates from v15.9.0 include:

    New General Features

    • The new Find dialog box allows you to extract searched strings from the current document or all opened documents.
    • New document titles are now suffixed with sequential numbers, such as Untitled-1, Untitled-2, …. (Notes: This causes breaking changes in Name and FullName properties of the Document object in macros)
    • The Web Help was improved so that it allows searches within the Help.

    New Options

    • The Extract Options dialog box was added.
    • The Quote All Cells button was added to the CSV Converter.
    • The Play Extra Sounds check box was added to the Window tab of the Customize dialog box.

    New Commands

    • Quote All Cells

    Plug-in API New Features

    • The EE_GET_FILTER message, Editor_GetFilter inline function were added.

    Macro New Features

    Bug Fixes

    • Fixed the bug where the Find in Files with Onigmo regular expressions could crash EmEditor.
    • Fixed the bug where the Delete and Undo under the virtual space mode did not work correctly.
    • Fixed certain bugs related to the CSV cell mode.

    To Download

    These files will be deleted when official release versions become available. The official releases can be downloaded at the Download page.

    Please post any questions or comments at Beta Forums.

    Thank you for continue using EmEditor!

    JSON

    EmEditor v15.9.0 supports JSON

    EmEditor v15.9.0 now supports JScript Version 5.8 as a macro language including the JSON object. For example, you can write a macro using JSON:

    var text = '{ "employees" : [' +
     '{ "firstName":"Noah" , "lastName":"Smith" },' +
     '{ "firstName":"Emma" , "lastName":"Johnson" },' +
     '{ "firstName":"Liam" , "lastName":"Williams" } ]}';
    
    var obj = JSON.parse(text);
    
    alert( obj.employees[1].firstName + " " + obj.employees[1].lastName );
    
    alert( JSON.stringify( obj, null, " " ) );

    This feature was not mentioned in the released notes, but we found it useful so decided to announce in a separate announcement. The JSON support was made possible because of EmEditor customers’ inputs in our forums. Thanks for your support and inputs!

    CSV Converter

    EmEditor v15.9.0 released!

    Today, we are releasing EmEditor v15.9.0.

    Notes: Indonesian is not supported anymore as the UI language.

    Updates from v15.8.4 include:

    New General Features

    • The new CSV Converter was added.
    • CSV conversion command optimization.
    • Another separator is added to the right side of CSV documents.
    • The Cut Column(s), Copy Column(s), Paste, Delete Column(s), Insert Column Left, and Insert Column Right commands were added to the Ruler menu.
    • The Insert Line Above and Insert Line Below commands were added to the left edge menu.
    • The settings for Undo buffer is obsolete. Instead, the physical memory size is used to determine whether the Undo should be retained. The physical memory threshold can be set in the Advanced tab of the Customize dialog box.
    • The new version allows you to cancel the current command when the Undo data will not be available.

    New Options

    • The Default column width text box was added to the CSV tab of the Customize dialog box.
    • The Always Discard Lengthy Undo Information to Accelerate check box was added to the Edit tab of the Customize dialog box.
    • The Maximum Memory Size text box was moved from the Sort tab to the Advanced tab of the Customize dialog box.

    New Commands

    • CSV Converter
    • Delete Column(s)
    • Cut Column(s)
    • Copy Column(s)
    • Insert Column Right

    Plug-in New Features

    • The Copy and Select All commands were added to the context menu on the list of the Word Count plug-in.
    • Added the ability to call a snippet by the path.

    Plug-in API New Features

    • The FIND_REGEX_INFO_EX structure was extended. The BACK_REF structure was added.

    Macro New Features

    • The Regex object, Matches collection, and Match object were added.
    • The regex property was added to the Editor object.
    • JScript Version 5.8 support including the JSON object.

    Bug Fixes

    • Fixed a certain bug related to the CSV cell mode.
    • Lookbehind regular expression searches using Onigmo work better now.
    • Fixed a certain bug related to Replace All while making muliple selections.
    • Fixed a certain bug related to the Replace method of macros.
    • During upgrading, the installer now prompts you to close Brother Control Center if it is running background.

    Please see EmEditor v15.9 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 April 19, 2016. 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!

    CSV Converter

    EmEditor v15.9.0 beta 6

    Today, we are releasing EmEditor v15.9.0 beta 6

    Notes: Beta versions are updated frequently. In order to update automatically to future beta versions, please select Select Update Channel on the Help menu, and select Betas.
    Notes: Indonesian is not supported anymore as the UI language.

    Updates from v15.9.0 beta 5 include:

    Bug Fixes

    To Download

  • 64-bit installer
  • 32-bit installer
  • 64-bit portable
  • 32-bit portable
  • These files will be deleted when official release versions become available. The official releases can be downloaded at the Download page.

    Please post any questions or comments at Beta Forums.

    Thank you for continue using EmEditor!

    CSV Converter

    EmEditor v15.9.0 beta 5

    Today, we are releasing EmEditor v15.9.0 beta 5

    Notes: Beta versions are updated frequently. In order to update automatically to future beta versions, please select Select Update Channel on the Help menu, and select Betas.
    Notes: Indonesian is not supported anymore as the UI language.

    Updates from v15.9.0 beta 4 include:

    Bug Fixes

    To Download

  • 64-bit installer
  • 32-bit installer
  • 64-bit portable
  • 32-bit portable
  • These files will be deleted when official release versions become available. The official releases can be downloaded at the Download page.

    Please post any questions or comments at Beta Forums.

    Thank you for continue using EmEditor!

    CSV Converter

    EmEditor v15.9.0 beta 4

    Today, we are releasing EmEditor v15.9.0 beta 4

    Notes: Beta versions are updated frequently. In order to update automatically to future beta versions, please select Select Update Channel on the Help menu, and select Betas.
    Notes: Indonesian is not supported anymore as the UI language.

    Updates from v15.9.0 beta 3 include:

    New General Features

    • The settings for Undo buffer is obsolete. Instead, the physical memory size is used to determine whether the Undo should be retained. The physical memory threashold can be set in the Advanced tab of the Customize dialog box.
    • The Undo buffer size in the Status bar is obsolete.

    New Options

    • The Always Discard Lengthy Undo Information to Accelerate check box was added to the Edit tab of the Customize dialog box.
    • The Maximum Memory Size text box was moved from the Sort tab to the Advanced tab of the Customize dialog box.

    Bug Fixes

    • Fixed a certain bug related to the Replace method of macros.

    To Download

  • 64-bit installer
  • 32-bit installer
  • 64-bit portable
  • 32-bit portable
  • These files will be deleted when official release versions become available. The official releases can be downloaded at the Download page.

    Please post any questions or comments at Beta Forums.

    Thank you for continue using EmEditor!

    CSV Converter

    EmEditor v15.9.0 beta 3

    Today, we are releasing EmEditor v15.9.0 beta 3

    Notes: Beta versions are updated frequently. In order to update automatically to future beta versions, please select Select Update Channel on the Help menu, and select Betas.
    Notes: Indonesian is not supported anymore as the UI language.

    Updates from v15.9.0 beta 2 include:

    New General Features

    • The Apply to All Documents in the Group check box was added to the CSV Converter.
    • The new version allows you to show the Undo buffer size. (Customize dialog box – Status – Undo Buffer Size)
    • The new version allows you to undo when the Undo data will not be available.

    New Plug-in features

    Bug Fixes

    • Fixed a certain bug related to Replace All while making muliple selections.

    To Download

  • 64-bit installer
  • 32-bit installer
  • 64-bit portable
  • 32-bit portable
  • These files will be deleted when official release versions become available. The official releases can be downloaded at the Download page.

    Please post any questions or comments at Beta Forums.

    Thank you for continue using EmEditor!

    CSV Converter

    EmEditor v15.9.0 beta 2

    Today, we are releasing EmEditor v15.9.0 beta 2

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

    Notes: Indonesian is not supported anymore as the UI language.

    Updates from v15.9.0 beta 1 include:

    New General Features

    • The new CSV Converter was added.
    • CSV conversion command optimization.
    • Another separator is added to the right side of CSV documents.

    New Commands

    • CSV Converter

    Bug Fixes

    • Fixed bugs in the Regex object.
    • Lookbehind regular expression searches using Onigmo work better now.

    To Download

    These files will be deleted when official release versions become available. The official releases can be downloaded at the Download page.

    Please post any questions or comments at Beta Forums.

    Thank you for continue using EmEditor!