Forum Replies Created
- AuthorPosts
- shaohaoMember
Use Find & Replace.
shaohaoMemberI 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";
shaohaoMemberRight click on tray icon failed in B33 & B34
November 9, 2007 at 1:39 am in reply to: [b29] Find in Files very slow to search a large number of files #4968shaohaoMemberYou’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.
shaohaoMemberI 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?
shaohaoMemberYeah. 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.
shaohaoMemberI’m using the portable version (using INI files)
Regular expression is disabled when searching.
Hmm, I should try the register version later.shaohaoMemberIt 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”
- AuthorPosts