Forum Replies Created
- AuthorPosts
Yutaka Emura
KeymasterHello,
I optimized the speed while filtered on beta 3.
Thank you!
Yutaka Emura
KeymasterHello voiid,
This will be fixed on the next version, beta 3.
Thank you!
October 1, 2016 at 2:29 pm in reply to: Filter lines – option to show lines before and after finded #21098Yutaka Emura
KeymasterHello,
Beta 2 shows a separator line between separated blocks after filtered, and you can change the color and style of the lines in the Display tab of Configuration Properties, select User-Defined Guides in the Specify Part list box, and select Text Color or Style.
Thanks,
Yutaka Emura
KeymasterHello Bogumil,
I reproduced the issue, and I will look into the issue. However, this is just because EmEditor tries to locate a correct line location from filtered documents, and lots of calculations are involved. You might want to extract all filtered lines to a new document by clicking the “Extract All” button on the Filter toolbar after you filter a document, or you can go to the Find dialog box, and use the Extract All button. Then you can work much faster with the newly created document.
Thanks,
September 30, 2016 at 3:51 pm in reply to: How to get the number of the last VISIBLE (filter-wise) line number in document? #21093Yutaka Emura
KeymasterHello LifeTimer,
On the next version (v16.2.0 beta 2), you can use eePosCellView flag to specify the coordinate in Cell View mode. For example:
document.selection.SetActivePoint( eePosCellView, 1, 7, false );will set the active cell at (1,7) in the view.
Thank you,
September 28, 2016 at 1:35 pm in reply to: How to get the number of the last VISIBLE (filter-wise) line number in document? #21086Yutaka Emura
KeymasterHello LifeTimer,
Thanks for clarification.
You can use:
editor.ExecuteCommandByID(4461);to select the current column without headings.
Thank you,
September 26, 2016 at 1:07 pm in reply to: How to get the number of the last VISIBLE (filter-wise) line number in document? #21081Yutaka Emura
KeymasterHello,
document.GetLines(eeGetLineView);should always return the number of only visible lines. Please make sure you add the “eeGetLinesView” flag as written above.
Can you make sure you use the latest version of EmEditor?
If the problem persists, please write the issue with a very simple example with a few sentences (as simple as possible).
Thank you,
Yutaka Emura
KeymasterIt should be:
editor.ExecuteCommandByID nIDI will fix this documentation.
Thank you!
September 16, 2016 at 2:43 pm in reply to: Possible to set a "Marker" (Highlight Word) from within a macro? #21045Yutaka Emura
KeymasterHello,
I will think about adding macro object/methods/properties related to markers.
Meanwhile, you can use the Add to Markers command:
editor.ExecuteCommandByID(4560);I hope this helps.
Thanks,
Yutaka Emura
KeymasterI will certainly think about that in the future.
Thanks,
September 6, 2016 at 11:30 pm in reply to: How to get the number of the last VISIBLE (filter-wise) line number in document? #21032Yutaka Emura
KeymasterHello LifeTimer,
The following macro should get the number of visible lines.
n = document.GetLines( eeGetLineView );Can you please try and let me know if you have further questions?
Yutaka Emura
KeymasterHello JohnQSmith,
You are right. I will update the color themes.
Thanks!
Yutaka Emura
KeymasterHello sky,
I reproduced the issue, and it will be fixed on the next version.
Thanks,
Yutaka Emura
KeymasterTo delete blank lines, I would bookmark all regular expressions:
^$
(use “Bookmark All” button in the Find dialog box)
and then use the Delete Bookmarked Lines command.
If you have enough physical memory in your PC, and if you need to replace many multi-line text (combine lines or split lines), you might want to try clearing the Use Temporary File to Reduce Memory Usage check box in the Advanced tab of the Customize dialog box.
Thanks,
Yutaka Emura
KeymasterHello,
I am not sure if it is called a bug, but I will think about that in future versions.
Thanks,Yutaka Emura
KeymasterHello,
These plug-ins uses certain Windows API functions to do these conversion. You can download the source code from our library, and customize the plug-ins as you wish.
Thanks,
August 5, 2016 at 12:06 pm in reply to: Bug in regular expression find, both in green-coloring and actual finding #21005Yutaka Emura
KeymasterHello,
I understand what you mean. However, the current behavior of EmEditor is correct. The hidden line is only HIDDEN, and not DELETED. Therefore, when you do a search, EmEditor will do the search according to the real text. EmEditor will only skip hidden lines if the search term doesn’t begin with the visible lines, but once the visible portion matches, EmEditor will check the hidden text. If you really want to delete those lines, you should extract filtered text into another document (You can use the Extract All button in the Filter toolbar). The logic is similar to hidden text by Outline Guide. It is also similar to the result of “Compare” commands. After comparison, some lines are separated by blank lines, but the search will not consider them real blank lines.
If this contradicts any other behaviors of EmEditor, please let me know.
Thank you,
Yutaka Emura
KeymasterHi Paul,
I reproduced this issue, and it will be fixed on the next version.
Thanks!
July 26, 2016 at 6:33 pm in reply to: Bug in regular expression find, both in green-coloring and actual finding #20996Yutaka Emura
KeymasterYes, I try EmEditor use very little memory per line, and one flag per line is very significant increase.
I am not sure if I understand your question about filtering. If this is a bug, can you please write a simple test case so that I can reproduce the issue.
Thank you,
July 25, 2016 at 9:03 pm in reply to: Bug in regular expression find, both in green-coloring and actual finding #20992Yutaka Emura
KeymasterHello,
In order to highlight multi-line search terms, EmEditor will need additional flags for each line, which increases memory usage. It also increases the computation time, and slows down the EmEditor speed. Therefore, EmEditor does not highlight multi-line search terms, and it has been this way for many years.
I understand the filtering out means. Thanks for clarification.
Yutaka Emura
KeymasterHello,
You can use:
document.selection.GetActivePointX( eePosCell );Thanks,
July 22, 2016 at 9:55 am in reply to: Bug in regular expression find, both in green-coloring and actual finding #20987Yutaka Emura
KeymasterHello,
EmEditor will not highlight (green) if the highlight word contains a newline. The Filter feature will not search for a newline.
I hope this clarifies your question. Please let me know if you can’t really find any regular expressions.
Thanks,
July 7, 2016 at 11:14 am in reply to: Escaped single and double quotes "\"" and '\'' problems #20976Yutaka Emura
KeymasterHello jic,
I understood.
Please make sure a backslash (\) is specified in the Escape Character text box in the Highlight (2) tab of configuration properties.Thanks,
Yutaka Emura
KeymasterHello LTT,
I will look into these issues. There are no macro functions available for markers.
Thanks!
July 6, 2016 at 11:52 am in reply to: Escaped single and double quotes "\"" and '\'' problems #20971Yutaka Emura
KeymasterHello,
Can you please explain what the problem is? Is this about CSV documents, or highlighting problems?
- AuthorPosts