Forum Replies Created

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • in reply to: Hope Add Some Functions, Thanks. #5602
    shaohao
    Member

    Use Find & Replace.

    in reply to: Request: selection length in status bar #5496
    shaohao
    Member

    I just wrote a more complex Macro for the selected text status.


    anchorX = document.selection.GetAnchorPointX(eePosLogical);
    anchorY = document.selection.GetAnchorPointY(eePosLogical);
    activeX = document.selection.GetActivePointX(eePosLogical);
    activeY = document.selection.GetActivePointY(eePosLogical);

    lines = 0;
    chars = document.selection.text.length;
    if ( chars != 0) { // really select something
    if ( activeY > anchorY) {
    lines = activeY - anchorY + 1;
    if ( activeX == 1) lines--;
    } else if ( activeY < anchorY) {
    lines = anchorY - activeY + 1;
    if ( anchorX == 1) lines--;
    } else /* activeY == anchorY */ {
    lines = 1;
    }
    }

    status = "Selected: " + lines + "lines, " + chars + " chars";
    in reply to: EmEditor Professional 7.00 beta 34 #5013
    shaohao
    Member

    Right click on tray icon failed in B33 & B34

    shaohao
    Member

    You’d better use register mode — save all settings in register, not the INI file mode — save all settings in .ini files.

    The INI file mode will slow down the searching in files.

    in reply to: Wish List #4856
    shaohao
    Member

    I recommend one “Scroll Edit-View Horizontally with Ctrl(Shift)+Mouse Wheel”

    Users can only scroll the edit-view verically with the mouse wheel. Is it possible for EmEditor to add “Ctrl(or Shift)+Mouse Wheel” function to scroll the edit-view horizontally?

    in reply to: "Find in Files" is slow…Very Slow!! #4628
    shaohao
    Member

    Yeah. The register version is fast — That’s what I wanna. But, Is there any different between register version and portable version on “Find in files”? I think they should have the same performance.

    in reply to: "Find in Files" is slow…Very Slow!! #4620
    shaohao
    Member

    I’m using the portable version (using INI files)
    Regular expression is disabled when searching.
    Hmm, I should try the register version later.

    in reply to: How about a column marker? #4007
    shaohao
    Member

    It is a useful function of UltraEdit. I wish EmEditor can implement it soon.

    A column marker is a thin vertical line that indicates the position of the column on the screen. If a column marker is specified to be at column 80, the marker is placed between the 80th column and the 81st column.

    If this feature is enabled, columns to the right of the marker will scroll horizontally while columns to the left will not. While the horizontal scroll is in effect, any mouse selection or clicking of the primary mouse button within the fixed portion of the display will cause the horizontal scroll position to be reset allowing viewing and editing of the continuous columns.

    When this item is checked (enabled) the columns to the left of the 1st column marker are fixed, and do not scroll horizontally while the columns to the right of the column marker will scroll as normal when the horizontal scroll bar is used or when the cursor is positioned to the right hand side of the window forcing a horizontal scroll.

    Unlike EmEditor’s horizontal line and vertical line, the column marker is a fixed line.

    BTW: Column Mode is another very powerful feature of UltraEdit. Is it possible to update EmEditor’s Box selection to a powerful “Box Edit mode” or “Column Edit mode”

Viewing 8 posts - 1 through 8 (of 8 total)