Forum Replies Created

Viewing 25 posts - 2,026 through 2,050 (of 3,662 total)
  • Author
    Posts
  • 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!

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

    In the Find in Files or Replace in Files dialog, you can select “Current File” in the menu displayed when you click the “>” button by the File Types drop-down list.

    in reply to: Search when no text is highlighted #8955
    Yutaka Emura
    Keymaster

    On Version 10, this check box has been deprecated, but there are new options on the menu displayed when you click the “>” button by the Find drop-down list box (in the Find dialog box). In this menu, three options available: “Selected Text”, “Word at Cursor”, and “Custom”. After selecting one of these, you can select “Save as Default” to save this option for the future.

    I hope this helps. Please let me know if you have any questions.

    in reply to: EmEditor cannot generate low-end ALT+NumCodes #8944
    Yutaka Emura
    Keymaster

    Hello CrashNBurn,

    I don’t know about the other application you mentioned, but I didn’t know about ALT + numbers behavior. Both Windows Notepad and EmEditor insert the same symbols. I think that is the Windows behavior. Those are Unicode characters and that is why they can’t be saved as ASCII. You can save them as a Unicode file. The other application assigns ALT+0x as inserting control characters ( Advanced > Insert Special Character. I hope this helps.

    Thank you!

    in reply to: Encoding Display #8943
    Yutaka Emura
    Keymaster

    Hello CrashNBurn,

    You can find current encoding on the status bar.

    Also, you can have EmEditor display the return method (CR, LF, or CR+LF) if you customize the status bar (On the Customize dialog > Status > Return Method).

    Please let me know if you have further questions.

    Thank you!

    in reply to: Editing HTML/PHP Files #8942
    Yutaka Emura
    Keymaster

    Hello CrashNBurn,

    You might want to try Zen-coding plug-in/macros.
    http://www.emeditor.com/modules/feature1/rewrite/tc_37.html

    In Zen-coding, the Balance Tag action selects text between and .

    Key-word completion can be accomplished using the WordComplete plug-in, which is installed by default.

    Please let me know if you have further questions.

    Thank you!

    in reply to: new characters to "hightlight matching brackets"? #8934
    Yutaka Emura
    Keymaster

    Hello tungwaiyip,

    I am sorry, but you can’t add new characters for matching brackets. I might consider that feature in the future.
    Thank you,

Viewing 25 posts - 2,026 through 2,050 (of 3,662 total)