Forum Replies Created

Viewing 25 posts - 1,451 through 1,475 (of 3,680 total)
  • Author
    Posts
  • in reply to: how to change the default values for "Find in Files" #16742
    Yutaka Emura
    Keymaster

    Hello jicman,

    On the right side of the File Types drop-down list box, click the > button to display a menu, and select the Custom. Click the > button again to display the menu again, and the select the Save as Default.

    Thanks!

    in reply to: EmEditor FREE #12621
    Yutaka Emura
    Keymaster

    Please see the notes in the Download section of the front page:

    http://www.emeditor.com/#download

    Download 32-bit portable, How to create 64-bit portable

    Thanks!

    in reply to: [Bookmarks] -> how can I see All my bookmarks? #11320
    Yutaka Emura
    Keymaster

    Here is the code:

    menu = CreatePopupMenu();
    document.selection.StartOfDocument();

    while( document.selection.NextBookmark() ) {
    n = document.selection.GetActivePointY( eePosLogical );
    s = "Line " + n;
    menu.Add( s, n );
    }
    result = menu.Track( 0 );
    if( result > 0 ) {
    document.selection.SetActivePoint( eePosLogical, 1, result );
    }

    in reply to: [Bookmarks] -> how can I see All my bookmarks? #11318
    Yutaka Emura
    Keymaster

    Sure. Please wait for a while. I will write again when I become available.

    Thanks!

    in reply to: Sticky Vertical Mode @Java macro -> how to set? #11317
    Yutaka Emura
    Keymaster

    Hello,

    You can use QueryStatusByID Method to find whether you are in the Vertical Mode.

    http://www.emeditor.com/help/macro/editor/editor_querystatusbyid.htm

    To exit from the vertical mode, you can run this command again.

    There is no way to change a carret or mouse pointer when you are in the Vertical Mode. I will consider that in the future version. Alternatively, you can add the toolbar button. You are in the Vertical Mode if the button is press.

    Thanks!

    in reply to: [Snippets] Several Triggers for the same snippet #11316
    Yutaka Emura
    Keymaster

    No, I can’t imagine why you need two trigger for one snippet. If you really want that way, you can copy a snippet to another, and assign a different trigger.

    in reply to: [Bookmarks] -> how can I see All my bookmarks? #11312
    Yutaka Emura
    Keymaster

    Hello,

    Currently, there is no built-in list for bookmarks. However, you can write a macro to enumerate all bookmarks and create a menu. Thanks!

    in reply to: Sticky Vertical Mode @Java macro -> how to set? #11311
    Yutaka Emura
    Keymaster

    Please see Command Reference

    http://www.emeditor.com/help/cmd/edit/vertical_mode.htm

    editor.ExecuteCommandByID(4473);
    in reply to: [Snippets] Several Triggers for the same snippet #11310
    Yutaka Emura
    Keymaster

    No, but you can duplicate your snippet and add different triggers.

    in reply to: [Stable Sort] Option #11303
    Yutaka Emura
    Keymaster

    You will need to use a large file to test this.

    Please try this:

    file deleted

    and then you can sort with stable sort, without stable sort, and compare two. I found these differences:

    stable sort:

    10012 10012
    10012 20012
    10013 10013
    10013 20013
    10014 10014
    10014 20014
    10015 10015
    10015 20015

    non-stable sort:

    10012 20012
    10012 10012
    10013 20013
    10013 10013
    10014 20014
    10014 10014
    10015 20015
    10015 10015

    The non-stable sort result may be different from yours since the behavior is undefined.

    Thanks!

    Yutaka Emura
    Keymaster

    Hello,

    Thanks for additional information. I didn’t know you have two monitors, which can be a cause of the issue. I will try to look into the issue with two monitor configuration.

    in reply to: [Stable Sort] Option #11294
    Yutaka Emura
    Keymaster

    Hi LTT,

    If the Stable Sort is on, in TSV mode, and if the cursor is at the first column,

    a b
    a a
    z z
    z y

    is correct. Only the first column is used to sort, and the second column order is unchanged. If the Stable Sort is off, the second column order can be changed (the behavior is undefined).

    Stable Sort is useful if you want to maintain the order of more than one column where there are multiple columns.

    in reply to: [Stable Sort] Option #11291
    Yutaka Emura
    Keymaster

    Hi LTT,

    You will have to change to Normal mode before you sort, and then change back to TSV mode. Does this answer your question?

    in reply to: matching brackets bug + severe memory leaks (v13.0.4) #11289
    Yutaka Emura
    Keymaster

    Hello JernejL,

    Thanks for information. If there was no problem in v12, and the problem exists in v13, it might be because 32-bit version of v13 was compiled with the Visual Studio 2010 compiler while 32-bit of v12 was compiled with the Visual Studio 2008 compiler. (The 64-bit versions of both v12 and 13 are compiled with Visual Studio 2012.) If you could run v12 with the same plug-ins and macros and coulnd’t reproduce the issue, this is probably the cause. I will still try to look into the issue.

    Thanks!

    in reply to: [Stable Sort] Option #11288
    Yutaka Emura
    Keymaster

    Hello LTT,

    This is a correct behavior.

    In normal mode, “a a” should come earlier than “a b”, so

    a a
    a b
    z y
    z z

    is correct.

    Yutaka Emura
    Keymaster

    Hello,

    Thanks for explanation. However, I am not still sure what the issue is. You wrote:

    When activating Window#2, pressing Ctrl+F||Ctrl+H opens a dialog (briefly) then it seems to go off the desktop – disappears.

    This alone is quite strange. Does the Find (or Replace?) dialog box briefly appears and then disappears?

    Can you disable all plug-ins and try again?

    Maybe a screencast might be more helpful.

    I am sorry for any inconveniences.

    Thanks!

    in reply to: matching brackets bug + severe memory leaks (v13.0.4) #11283
    Yutaka Emura
    Keymaster

    Hi JernejL,

    Thanks for information. Do you macros include “Mouse activities and keyboard input to other applications”?

    in reply to: EmEditor & Linux files [mapped drive] #11282
    Yutaka Emura
    Keymaster

    Hi,

    I am not sure what you mean by ‘executable”. Can you explain more? If you use backup settings in the Configuration Properties, maybe you might want to disable the backup, and see if this can help.

    Thanks!

    Yutaka Emura
    Keymaster

    Hello,

    I reproduced this one. I don’t know if this is a bug, but it is just because EmEditor doesn’t accept a drop when a top window is not the main window (when a dialog box is the top window). I will see if I can fix this issue.

    Thanks!

    Yutaka Emura
    Keymaster

    Hello,

    I am not sure if I understand this correctly, especially 1) and 2). Can you explain more details or can you show a screenshot?

    Thank you!

    in reply to: matching brackets bug + severe memory leaks (v13.0.4) #11275
    Yutaka Emura
    Keymaster

    Hello JernejL,

    Thanks for information. Where did you find the “grid column edit mode” plug-in? I will need to test that plug-in.

    What kind of macros did you use? Are these all written in JavaScript or VBScript?

    Thanks!

    in reply to: matching brackets bug + severe memory leaks (v13.0.4) #11272
    Yutaka Emura
    Keymaster

    Hello JernejL,

    I reproduced the issue with the brackets, and will fix it soon. Thank you for reporting!

    As for the second issue, so you haven’t closed EmEditor for a month? Have you used macros? How often do you use macros? Do you use any plug-ins? Which plug-ins do you use and how often?

    Thanks!

    in reply to: [Snippets Plug-in] Where it stores it database #11271
    Yutaka Emura
    Keymaster

    EmEditor frequently uses the Registry to save and load settings (in order to reduce used memory size) when installed. However, when it is used as portable settings, it uses .INI files, and INI files are very slow compared to the Registry. For this reason, I advise using the Installer whenever possible. However, in most cases, both speed are about the same. The differences are significant when you change settings or when you first launch EmEditor.

    Also, some features like Update Checker, File Extension Association with EmEditor, Explorer context menu, Windows 8/7 Taskbar context menu, etc., are only available from installed EmEditor.

    Thanks!

    in reply to: File-specific wrap mode setting #11257
    Yutaka Emura
    Keymaster

    You can still use different wrapping modes if you use separate configurations, but I will think about that in future versions.

    Thanks!

    in reply to: Native Linux support #11254
    Yutaka Emura
    Keymaster

    Hello,

    You can download older versions at:

    http://www.emeditor.com/modules/download2/rewrite/tc_3.html

    Thanks!

Viewing 25 posts - 1,451 through 1,475 (of 3,680 total)