Forum Replies Created

Viewing 25 posts - 126 through 150 (of 392 total)
  • Author
    Posts
  • in reply to: Active String issues #26543
    LTT
    Participant

    > Colors:
    > When it is selected, after the value is changed via Color Picker, and the length of the string is changed, I think the length of the selection should also change correspondingly.

    ▲ Could this be optimized?
    e.g. when #800 is changed to #800000.

    in reply to: Remember the clicked Active String when the event occurs #26542
    LTT
    Participant

    e.g.:
    An External Tool that uses $(ActiveString).
    A macro that uses document.ActiveString.

    LTT
    Participant

    This issue regressed.

    in reply to: Customize Menus #26526
    LTT
    Participant

    4+:
    Is it possible to underline the accelerator key, and show all the other “&”s in the menu?

    LTT
    Participant

    2+:
    I suggest keeping only links in the list.
    One should open the destination to see the context, before changing the option (e.g. “Count matches when a document is opened”).
    And thus this list could be more lightweight I think.

    2++:
    The links can be renamed.
    So one can distinguish them quickly.

    —————
    Please at least consider the 3.
    “Jump + Focus” is also needed for KeyboardMap/QuickLaunch.

    in reply to: Click on selection border/corner #26521
    LTT
    Participant

    >1:
    Triple-click should also work if it happens on the AutoRepeat handle.

    3:
    Currently, clicking on left/right (or top/bottom) border sets the active point. This is acceptable.
    But I hope another click (on the active point) should collapse the selection.

    in reply to: Increase/Decrease Font Size #26520
    LTT
    Participant

    1+:
    If the shortcut contains neither Ctrl+ nor Alt+ (e.g. Shift+F11), the step changes will be saved.

    2+:
    If I don’t use the shortcut key,
    or I don’t have “Ctrl+” in the shortcut,
    “Increase/Decrease Font Size” command leaves the message in the status bar. (Though pressing Ctrl key will clear it.)

    5:
    The commands don’t move the saved item to top in the menu.

    New suggestions:
    + Command: Set Current Font as Default.
    + Command: Reset Font.

    in reply to: Pair, Enter #26519
    LTT
    Participant

    Type: (
    Result: ()
    Press Enter key.()
    ** I got 2 newlines.

    in reply to: Snippet undo #26518
    LTT
    Participant

    I see no change.

    in reply to: Customize Menus #26517
    LTT
    Participant

    Now the Paste command works great that it can paste any command into any menu!
    Thanks for the fix.

    —————
    3:
    Add a Popup item in a menu.
    Paste a tab character into its Name, e.g.:
    (tab)!!!
    (So I can use Tab key to open this popup.)
    Then Copy or Copy All.
    Paste.
    ** But Paste command can only paste the content before the tab character.
    Is it possible to make Paste support such items?

    —————
    4:
    Add a menu item that contains 2 (or more) “&”, e.g.:
    &a &b &c
    The 1st “&” (a) is the accelerator key.
    ** But the last “&” (c) is underlined.

    —————
    5:
    Make any change in “Jump List” menu.
    Open Jump List from task button.
    ** The items are blank (no text).

    —————
    The workspace commands need a fix: (Similar issue as Rename)
    emeditor.com/forums/topic/19-3-93/#post-26444

    —————
    The result text of Copy commands contains 5 columns (in TSV mode).
    Q1:
    There are 2 tabs between Name column and ID column. Is it correct?
    Q2:
    What’s the last (5th) column for?
    Q3:
    If I do the 3 steps below:
    Copy All
    Delete All
    Paste
    The new menu .bin file will grow bigger, because Copy commands now copy all the Name text.
    Not sure if it’s correct.

    in reply to: Increase/Decrease Font Size #26499
    LTT
    Participant

    >1:
    I expect the sizes will NOT be saved in Font List during adjusting.
    But now even Ctrl+wheel saves the sizes…

    3:
    Add an “*” (or some character) in Status bar when font size matches the default size.

    4:
    Also show font size in Status bar for “Reset Font Size” command.

    in reply to: Start Window #26498
    LTT
    Participant

    >1
    The icon is fixed.
    But see the Type (“Local Disk”).

    in reply to: eeShowTipCurrentMouse #26491
    LTT
    Participant

    ShowTip(“sTip”, eeShowTipActiveString);
    ** If LineSpace >= 0, the underline of the Active String is covered by the top border of the tooltip.
    Please move it down by 1 pixel.

    in reply to: Customize Menus #26490
    LTT
    Participant

    What’s the use of “Copy All”?
    Is there a way to solve issue 1 (moving item(s) between menus), since “Paste” command is not designed for this purpose?

    in reply to: Breaking every line to the closest 80 characters #26485
    LTT
    Participant

    By the way,
    I use the macro below to quickly change the line length for WrapByChar (according to ActivePointX, the caret position):


    //[email protected]

    nMarginMin = 10;
    nMarginMax = 32767;

    nMargin = document.selection.GetActivePointX(eePosLogicalA)-1;
    nMargin = Math.max(nMarginMin, nMargin);
    nMargin = Math.min(nMarginMax, nMargin);

    oCfg = document.Config;
    sTip = "WrapByChar ["+ nMarginMin +", "+ nMarginMax +"] = "+ oCfg.General.MarginNormal;
    do {
    nn = prompt(sTip, nMargin);
    if (isNaN(nn) || nn == "") Quit();
    nn = Math.ceil(nn);
    } while (nn < nMarginMin || nn > nMarginMax);

    oCfg.General.MarginNormal = nn;
    oCfg.Save();

    editor.ExecuteCommandByID (4209) //Wrap by Characters

    in reply to: Breaking every line to the closest 80 characters #26484
    LTT
    Participant

    After Yutaka’s steps, if you still wish to add “>”:
    Select the lines.
    Use “Select Beginning of Lines” command.
    Type “>”.

    You can record the whole procedure as a macro.

    —————
    Actually there are quite a few ways to do this in EmEditor.

    ▼ Here’s the most simple/economical way I think, to get an almost same result:

    Use “Wrap by Window” command.
    Resize the window to the wanted width. (Show and see the ruler at the top of the view.)
    (Or use “Wrap by Characters” command instead of the above two steps, if your “Normal Line Margin” setting is 80 (default).)
    Select the lines you want to convert.
    Copy.
    Use “Paste in Quotes and Newline Characters” command.

    ▲ You can find the commands and descriptions by searching in “Quick Launch” (default key: Ctrl+Q) if you don’t know where they are.
    ▲ You can assign shortcut keys to the often-used commands/macros.

    —————
    ▼ Another simple way, to get an exact same result as you presented:

    Use “Wrap by Characters” command. (Default = 80.)
    Open the current configuration properties:
    Wrap:
    Add a space in “Not Allowed at Line End”.
    OK.
    Select the lines you want to convert.
    Copy.
    Use “Paste in Quotes and Newline Characters” command.

    Compare the results in my screenshot:
    i.ibb.co/C8Lhx2m/Em-Editor-Wrap-By-Char-Q-NL.png
    Actually your max line length is 79. ;-)

    in reply to: Missing a virtual space button #26483
    LTT
    Participant

    @Yutaka ,

    Is it possible to enhance #status directive to support the options (properties), for such macros?

    —————
    emeditor_en.chm::/macro/directive/status.htm
    Specifies the status (whether the macro is enabled and whether it is checked) of the current macro should mimic the command specified by the ID.
    ▲ “which” is missing before “should”?

    in reply to: Theme names; Highlight(1) #26482
    LTT
    Participant

    Hope the appearance of Highlight(1) can be optimized further.
    At least issue A and E should be addressed.

    in reply to: Markers #26481
    LTT
    Participant

    A:
    Customize Markers: Options: Default Color = Auto.
    Marker List:
    I already have many items.
    Click “Add” to add some new items.
    ** The color numbers change oddly: Not one by one, but now and then.

    —————
    B:
    Marker List:
    Select an item.
    Click “Add”.
    ** The new item should also follow the color (as well as the options).

    —————
    C:
    Marker List:
    Deselect the selection.
    Click “Add”.
    The new item is added with all the three options enabled.

    While “Add to Markers” command enables only “Match Case” option for the new item.

    Hope such defaults can be customized.

    LTT
    Participant

    I don’t think this is a correct behavior.

    in reply to: Could you add a vertical separator to the replace window? #26456
    LTT
    Participant

    When Batch board is open, and I drag the window border, is it possible to keep the left board width fixed?
    If not, I feel the draggable separator in the middle is still needed.

    What I expect:
    Usually I don’t want to widen the left board any more.
    I open Batch board, widen the window, then drag the middle separator to minimize the left board (so Batch board is widened more).
    Then the separator position should be saved.
    Batch board should use that width on next open.

    —————
    The above two issues still exist.

    in reply to: eeShowTipCurrentMouse #26454
    LTT
    Participant

    ▲ Hope the tooltip position can be optimized a little bit.

    —————
    Suggestion:
    I see (in IPTip.jsee) we can show links in a tooltip via a macro.
    1:
    Please add a note/list of such features in CHM for ShowTip method.
    2:
    And hope the URL in a tooltip can be copied individually, and can be shown somehow (e.g. in Status bar).

    LTT
    Participant

    I suggest to add command line options for that.
    See the 4 in this post: (Maybe too brief to be noticed, sorry.)
    emeditor.com/forums/topic/open-save-options/

    LTT
    Participant

    @Yutaka ,
    How to make @ to you work?

    LTT
    Participant

    @David ,

    > I want to post an image to show. But I find the function of this community is different from before. I try to use html tags but it’s not allowed to submit the post.

    ▲ I think you can simplify things by cutting the URL this way:
    URL: emeditor.com/forums/topic/question-of-funtion-grab-text/#post-26411

Viewing 25 posts - 126 through 150 (of 392 total)