Forum Replies Created
- AuthorPosts
Yutaka Emura
KeymasterThank you so much for writing the test macro. I’ve fixed this issue on v25.3.911.
Yutaka Emura
KeymasterHi Patrick,
Could you clarify whether you searched for “aRefNEQ” before or after making that selection? If possible, please share the steps to reproduce the issue.
It also looks like you have Virtual Space enabled (on the General page of the configuration settings). Is that correct?
Lastly, could you try a fresh install of the latest preview portable version and let me know if you can still reproduce the issue?
Thank you,
Yutaka Emura
KeymasterI see. I will fix this issue on the next preview version. You can use “New Prompt” instead for now.
Yutaka Emura
KeymasterThis is by design: when “Discard” is selected, you can’t deselect “Save to Chat with AI.”
Yutaka Emura
KeymasterI’ll fix this issue on the next preview version. Thank you!
Yutaka Emura
KeymasterHello sky,
If you select “Discard”, you will also need to select “Save to Chat with AI” option.Yutaka Emura
KeymasterI’ve reproduced this issue, and it will be fixed on the next version. Thank you!
September 18, 2025 at 9:43 am in reply to: editor.FileDialog(eeFileDialogSaveAs, …) cannot select a read only file #30438Yutaka Emura
KeymasterYou can use eeFileDialogOpen instead of eeFileDialogSaveAs as the nType parameter.
Yutaka Emura
KeymasterI’ll fix this issue on the next version. Thank you!
August 12, 2025 at 3:55 pm in reply to: Wish: option to create simple dialog boxes for scripts #30378Yutaka Emura
KeymasterYou can’t add edit boxes to the dialog right now, but I’ll consider adding this feature in future versions.
August 12, 2025 at 3:54 pm in reply to: Wish: “Find All” for “Find dialog” and list Results in Output window #30377Yutaka Emura
KeymasterI’ll consider making the list in the Output Bar clickable in future versions.
August 12, 2025 at 8:37 am in reply to: Wish: “Find All” for “Find dialog” and list Results in Output window #30375Yutaka Emura
KeymasterThe Output Bar doesn’t support clickable lists. To view clickable lines, clear the Output Bar in the Extract Options dialog box. The clickable lines will then appear as a new document in the editor.
August 11, 2025 at 1:34 pm in reply to: EmEditor syntax highlighter: Overlap conflict when using Regex Quantifiers #30367Yutaka Emura
KeymasterIf
(?^#_text_c==0)were ignored, the literal “a string” would also be ignored. One fix is to use the regex(?#_text_c==0)"[^/]*?".August 11, 2025 at 9:49 am in reply to: EmEditor syntax highlighter: Overlap conflict when using Regex Quantifiers #30365Yutaka Emura
KeymasterWhile we’re on the subject of the
(?#_text_c==n)and(?#_text_c!=n)syntax, are there any known issues with it?August 11, 2025 at 9:44 am in reply to: Wish: “Find All” for “Find dialog” and list Results in Output window #30364Yutaka Emura
KeymasterI think the Extract option in the Find dialog is what you’re looking for. You can also open Extract Options to fine-tune your settings.
August 10, 2025 at 9:11 am in reply to: How to see the line content in the “List of Bookmarks” ? #30360Yutaka Emura
KeymasterDisplaying the actual text can slow down EmEditor, especially when there are many bookmarks and the files are very large. For this reason, the actual text is not shown.
August 10, 2025 at 9:05 am in reply to: Wish: option to create simple dialog boxes for scripts #30359Yutaka Emura
KeymasterThere’s already a similar feature available: the
MsgBoxmethod of thePopupMenuobject:https://www.emeditor.org/en/macro/popupmenu/msgbox.html
Would this work for your needs?
August 1, 2025 at 9:07 pm in reply to: EmEditor syntax highlighter: Overlap conflict when using Regex Quantifiers #30352Yutaka Emura
KeymasterI’ve fixed this issue on preview 3 (25.2.903).
July 30, 2025 at 9:35 pm in reply to: EmEditor syntax highlighter: Overlap conflict when using Regex Quantifiers #30348Yutaka Emura
KeymasterEmEditor v25.3 preview 1 (25.2.901) introduces experimental support for using special keywords in regex highlight strings to set additional conditions.
–
(?#_text_c==n)applies the highlight only if the text at the start of the match is already using color ‘n’.
–(?#_text_c!=n)applies the highlight only if the text at the start of the match is *not* using color ‘n’.Here,
nis an integer representing a specific color, as defined in plugin.h. For example:#define SMART_COLOR_NORMAL 0 #define SMART_COLOR_HILITE_4 17 // ...and so onTo set a condition, one of these keywords must appear at the very beginning of your highlight string.
For instance, instead of just writing
%%.*$, you could use(?#_text_c!=17)%%.*$to highlight lines starting with%%only if they don’t already use the color corresponding ton = 17(SMART_COLOR_HILITE_4).Hope this helps clarify how to use this new feature!
Yutaka Emura
KeymasterYou can clear the “Automatically show the Markdown toolbar” check box on the Markdown page of the Customize dialog box.
July 4, 2025 at 4:54 pm in reply to: The “Properties” button in Define Configurations is not functional #30345Yutaka Emura
KeymasterI’m aware of this issue. Instead of clicking the “Properties” button, you can just double-click the selected item. The issue will be fixed on the next version.
June 29, 2025 at 9:57 am in reply to: EmEditor syntax highlighter: Overlap conflict when using Regex Quantifiers #30339Yutaka Emura
KeymasterIf
%%always appears at the beginning of a line, you can use:^%%.*$Otherwise, I don’t think there’s a good way to write a regex for this case. I’ll consider adding an option to control how regex is applied in situations like this.
Yutaka Emura
KeymasterThank you for bringing this to my attention.
The character count was correct because it included newlines (CR+LF) when the “Always insert newlines when copying multiple selections” option is enabled on the Edit page in Customize. However, I will change this behavior in the next version. The word and line counts will also be fixed in the next version.June 26, 2025 at 4:09 pm in reply to: EmEditor uses the old search range for find in the selection #30331Yutaka Emura
KeymasterThe previous requirement to select multiple lines before clearing the search range was intentional. However, I will modify this behavior as per your request in the next update.
June 26, 2025 at 4:07 pm in reply to: EmEditor syntax highlighter: Overlap conflict when using Regex Quantifiers #30330Yutaka Emura
KeymasterYour observation is correct: highlighting with regex allows overlapping.
- AuthorPosts