Forum Replies Created
- AuthorPosts
- Yutaka Emura Keymaster- Hi 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 Keymaster- I see. I will fix this issue on the next preview version. You can use “New Prompt” instead for now. - Yutaka Emura Keymaster- This is by design: when “Discard” is selected, you can’t deselect “Save to Chat with AI.” - Yutaka Emura Keymaster- I’ll fix this issue on the next preview version. Thank you! - Yutaka Emura Keymaster- Hello sky, 
 If you select “Discard”, you will also need to select “Save to Chat with AI” option.- Yutaka Emura Keymaster- I’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 #30438- Yutaka Emura Keymaster- You can use eeFileDialogOpen instead of eeFileDialogSaveAs as the nType parameter. - Yutaka Emura Keymaster- I’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 #30378- Yutaka Emura Keymaster- You 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 #30377- Yutaka Emura Keymaster- I’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 #30375- Yutaka Emura Keymaster- The 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 #30367- Yutaka Emura Keymaster- If - (?^#_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 #30365- Yutaka Emura Keymaster- While 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 #30364- Yutaka Emura Keymaster- I 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” ? #30360- Yutaka Emura Keymaster- Displaying 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 #30359- Yutaka Emura Keymaster- There’s already a similar feature available: the - MsgBoxmethod of the- PopupMenuobject:- 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 #30352- Yutaka Emura Keymaster- I’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 #30348- Yutaka Emura Keymaster- EmEditor 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 on- To 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 to- n = 17(- SMART_COLOR_HILITE_4).- Hope this helps clarify how to use this new feature! - Yutaka Emura Keymaster- You 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 #30345- Yutaka Emura Keymaster- I’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 #30339- Yutaka Emura Keymaster- If - %%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 Keymaster- Thank 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 #30331- Yutaka Emura Keymaster- The 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 #30330- Yutaka Emura Keymaster- Your observation is correct: highlighting with regex allows overlapping. - Yutaka Emura Keymaster- PS Though, I’d suggest to first wait for Yutaka’s opinion on whether this is intended or rather an oversight that will be fixed in one of the next updates. - Could you clarify the issue/question? Thank you. 
- AuthorPosts