Forum Replies Created

Viewing 25 posts - 2,051 through 2,075 (of 3,693 total)
  • Author
    Posts
  • in reply to: Restore Workspace when Drive doesn't exist: #9067
    Yutaka Emura
    Keymaster

    Hello CrashNBurn,

    I reproduced this issue, and I already fixed that on my PC. You will see the issue fixed when the next version becomes available. Thanks for your input!

    Yutaka Emura
    Keymaster

    Hello Deipotent and CrashNBurn,

    I will consider those options in future versions.
    Thanks for your inputs!

    in reply to: Retain Colors in Clipboard #9055
    Yutaka Emura
    Keymaster

    EmEditor doesn’t use RTF. You might be interested in this macro:

    http://www.emeditor.com/modules/mydownloads/singlefile.php?cid=8&lid=190

    in reply to: save empty file #9053
    Yutaka Emura
    Keymaster

    Hello user,

    Please check “Always Enable Savings” check box in the Save Details dialog box (Configuration Properties > File tab > Saving button).

    in reply to: Can't search selection #9035
    Yutaka Emura
    Keymaster

    Hello,

    As you might already notice, “Search All Open Documents” cannot be used with “In the Selection Only” together.

    Likewise, “Find Next” or “Replace” buttons are disabled when “In the Selection Only” is checked.

    Please let me know if you have further questions.
    Thank you,

    in reply to: Can't search selection #9031
    Yutaka Emura
    Keymaster

    Hello rayd,

    The selection search is not supported in EmEditor in any versions. You can only replace within a selection.

    Thank you!

    in reply to: EmEditor 10.0.4 – Win2K – RtlIpv6AddressToStringExW #9024
    Yutaka Emura
    Keymaster

    Hello,

    Have you applied SP4 to your Windows 2000?
    I can’t reproduce this issue.

    in reply to: sort selection #9019
    Yutaka Emura
    Keymaster

    Hello Derek,

    When you add a macro to a menu, there is a text box called “Name” on the Menu Properties. You can enter whatever name you want to be appeared in the menu.

    in reply to: Updating to Recent Version wiped the Workspace #9018
    Yutaka Emura
    Keymaster

    Hello CrashNBurn,

    I am sorry, but I don’t know why that happened. Did you use “Save, Restore and Keep Undo Information” selected for “Automatic Workspace” on the Window tab of Customize dialog? I will take a close look at this issue.
    Thank you!

    in reply to: Possible to run EmEditor without Registry? #9017
    Yutaka Emura
    Keymaster

    Hello CrashNBurn,

    Yes, it is a feature of EmEditor Professional. On the Tools menu, you can select “Import and Export” and select one of “Set up a removable drive such as a USB drive…” items. The portable version of EmEditor Professional is also available for download at Emurasoft Customer Center.

    in reply to: Select Vertically: Mouse vs. keyboard #9013
    Yutaka Emura
    Keymaster

    Currently, this is the specification. We might consider this issue in the future. Thank you.

    in reply to: How to make replaced text automatically selected #9009
    Yutaka Emura
    Keymaster

    Hello chjfth,

    There is no easy way to do this, but I wrote this code for you:

    if( document.selection.Find( "<(.+)>", eeFindReplaceRegExp | eeFindNext) ){
    x1 = document.selection.GetTopPointX( eePosLogical );
    y1 = document.selection.GetTopPointY( eePosLogical );
    x2 = document.selection.GetBottomPointX( eePosLogical );
    y2 = document.selection.GetBottomPointY( eePosLogical );

    sLine1 = document.GetLine( y2 );
    document.selection.Replace( "<(.+)>", "@1", eeFindReplaceRegExp);
    sLine2 = document.GetLine( y2 );
    x2 += sLine2.length - sLine1.length;

    document.selection.SetActivePoint( eePosLogical, x1, y1 );
    document.selection.SetActivePoint( eePosLogical, x2, y2, true );
    }

    I am sorry, but this code doesn’t support eeReplaceSelOnly flag. I still hope this helps.

    in reply to: Split text file into multiple files based on string #9002
    Yutaka Emura
    Keymaster

    Hello SSI,

    Here is a JavaScript macro for this purpose:

    document.selection.SelectAll();
    var textArray = document.selection.Text.split("X");
    for( i = 0; i < textArray.length; i++ ){
    editor.NewFile();
    document.write( textArray[i] );
    }

    I hope this helps.

    in reply to: Saving a file with both CRLF and solo LF characaters #9000
    Yutaka Emura
    Keymaster

    Hello SSI,

    If you are trying to combine two files into one by copy and paste, you might need to check “Preserve (CR/LF) returns on Clipboard” before you copy and paste text from one file to another.

    Or in Command Prompt, you can type

    COPY /B A.txt+B.txt C.txt

    If you are manually inserting a return, EmEditor will automatically adjust the return method using one at the cursor. To insert a specific return, you can select under Tools menu, All Commands > Edit > Insert > CR only, LF only, or CR+LF. On the Keyboard Map (under Help), you can assign any keyboard shortcuts as these commands.

    I hope this helps.
    Thank you!

    in reply to: enhanced display #8996
    Yutaka Emura
    Keymaster

    Hello user,

    You might want to check “Always Enable 1 Page Vertical Scroll” check box in the Scroll tab of configuration properties. This way, the cursor can move around top to bottom wherever you are trying to edit.

    I hope this helps. Thanks!

    in reply to: sort selection #8993
    Yutaka Emura
    Keymaster

    Hello Derek,

    Not all operations are recorded automatically. Please see Help for macro methods. Here is an example:

    Narrowing on:
    editor.ExecuteCommandByID(4457);
    http://www.emeditor.com/help/cmd/edit/narrowing_on.htm

    Narrowing off:
    editor.ExecuteCommandByID(4458);
    http://www.emeditor.com/help/cmd/edit/narrowing_off.htm

    Sort A to Z:
    editor.ExecuteCommandByID(4477);
    http://www.emeditor.com/help/cmd/edit/sort_text_a.htm

    in reply to: ruler to wrap text #8992
    Yutaka Emura
    Keymaster

    I might think about those features in the future.
    Thanks!

    in reply to: Snippet Properties #8986
    Yutaka Emura
    Keymaster

    Hello pja,

    You can add numbering in front of snippet titles, but that’s the only way I can think of. I might consider the sorting option in the future. Thanks for your inputs!

    in reply to: 'html toolbars' disappear every time restart emEditor #8978
    Yutaka Emura
    Keymaster

    Hello mwcd,

    If you right-click on the HTML Bar button on the Plug-ins toolbar, a context menu will appear. At the bottom of this menu, you will see “Properties”. Please click on this.

    Thanks!

    in reply to: 'html toolbars' disappear every time restart emEditor #8976
    Yutaka Emura
    Keymaster

    Hello mwcd,

    It is not a bug. If you want the HTML bar appear every time you start EmEditor, please check “Automatically display the HTML Bar for selected configurations” check box, and check all configurations applied.

    in reply to: Find in Files; Independent Process; Pinned; Recent File List #8973
    Yutaka Emura
    Keymaster

    Hello LTT,

    1.
    Open Find in Files dialog in an EmEditor window. Then, with the dialog open, close this window. All the windows of this process will be terminated!

    I couldn’t reproduce this issue.

    2.
    Single-process mode.
    Open the first window by any way without using the command line option /sp.
    This process (A) reads the Recent File List from the registry only when its first window opens, and saves the list to the registry only when its last window closes.
    Now run a new process by using /sp.
    This process (B) always synchronizes the Recent File List from/to the registry.
    So, if A is closed after B, All the changes of the Recent File List in the registry changed by B will be overwritten!

    3.
    Opening the Recent File List menu in a new, independent-process window will cause all the pinned files to be removed from the menu!

    I realize these issues, but separate processes are not completely supported.

    4.
    In a Find-in-Files result, a path will not be highlighted (or highlighted completely) if the file name contains such a regular expression match:
    (.*)x20

    Path containing spaces are not supported intentionally.

    I hope these make sense except 1.
    Thank you!

    in reply to: Search/Replace : Search All Documents in this Window #8965
    Yutaka Emura
    Keymaster

    Hello CrashNBurn,

    Then, how about “Search All Open Documents” option in the Find/Replace dialog box?

    in reply to: Click on Current/Active Tab -> Go to previous Active Tab #8959
    Yutaka Emura
    Keymaster

    Hello CrashNBurn,

    Did you know you can customize some mouse button behavior on the Mouse tab of the Customize dialog box? It doesn’t include “Minimize” command, however. You can specify Close command, for instance. Please be more specific about “Minimize” command. Do you want to specify “New Minimized Group” command?

    in reply to: Edit | Separated Values/Sort [OPTION] Only Selected #8958
    Yutaka Emura
    Keymaster

    Hello CrashNBurn,

    You can also use the Narrowing command (on the Edit menu) to select where you want to sort, but this still requires several steps to accomplish. I might consider an easier way in the future. Thanks!

    in reply to: GUI Improvement to the Search/Replace Dialog #8957
    Yutaka Emura
    Keymaster

    Hello,

    I might consider those options in the future.
    Thanks!

Viewing 25 posts - 2,051 through 2,075 (of 3,693 total)