Forum Replies Created
- AuthorPosts
Yutaka Emura
KeymasterHello Simon,
This forum can change double quotes to curly quotes, and some other changes. Would you please zip a sample JavaScript file and send it to [email protected] ?
Also, all these lines have the same issue? If so, please simplify the macro to only one or a few line(s) to make it easier to test.I have a problem with my existing Macro not working for replace in files across 80+ XML files
Can you explain more details of the problem?
Thank you,
Yutaka Emura
KeymasterHello,
You can click the “Abort” button on the Filter toolbar to cancel the filter, and then click the “Refresh” button to resume the previously used filter.
If you need to switch between multiple filters, you might want to record a macro. You can press Record button on the main toolbar before you do a filter operation, and then stop recording the macro. If you save the macro, you will find the filter was recorded as a JavaScript or VBScript, and you can reuse that macro. However, I might think an easier way to select a previously used advanced filter in future versions.
Thank you,
March 16, 2015 at 2:19 pm in reply to: Consolidate the "Project" plug-in, the "Workspace" and the "Group" concepts #19924Yutaka Emura
KeymasterHello Meir,
I think you have customized the main menu, but you will see these workspace comamnds if you reset the main menu (Tools > Customize Menus).
Also, the new workspace feature has no interaction with the Projects plug-in. When you mention ‘solutions’ or ‘projects’, I suspect those are related to the Projects plug-in, but workspaces have nothing to do with the Projects plug-in. A workspace can include multiple group windows. Therefore, I didn’t allow multiple workspaces appear at the same time.
Thank you for trying the beta version!
Yutaka Emura
KeymasterHello r91085,
The logical OR operator is not included in v15.0.0 beta 1.
https://www.emeditor.com/forums/topic/emeditor-v15-0-0-beta-1/
Thanks!
March 15, 2015 at 9:28 pm in reply to: Consolidate the "Project" plug-in, the "Workspace" and the "Group" concepts #19919Yutaka Emura
KeymasterHello Meir,
Multiple workspace features are now included in v15.0.0 beta 1. Although it might not be exactly what you expect, I hope this helps.
https://www.emeditor.com/forums/topic/emeditor-v15-0-0-beta-1/
Thanks!
Yutaka Emura
KeymasterHello gora,
I fixed this bug on beta 6.
https://www.emeditor.com/forums/topic/emeditor-v14-9-0-beta-6/Thank you!
Yutaka Emura
KeymasterHi gora,
I think I understand the situation (Q5).
When you “extract all”, only the first line of the matched string will be extracted. Since your search term was “\nSetEnvironment”, you are extracting each line before “SetEnvironment”. Therefore, the result was correct.
However, I am not sure about Q6.Yutaka Emura
KeymasterHello gora,
I will fix Q2. As for Q3, The check box will be reset on the next beta version (beta 5). As for Q4, currently, EmEditor can’t highlight multiline keywords.
I can’t reproduce Q1, Q5, and Q6. There are lots of conditions that affect test results. Can you make your test case as simple as possible, for example, the symbol “%%” matters? What about “abc”? Please make your test cases as simple as possible, and please email me sample files with detailed explanation as to how to reproduce the problem at [email protected], along with your registry file exported at HKEY_CURRENT_USER\Software\EmSoft. (Please zip all files.)
After you export your registry, you might want to select “Tools” -> “Quick Launch” -> “Rest all Settings” to reset your settings and try again and see if you can reproduce the problem.
Thank you,
Yutaka Emura
KeymasterHello gora,
The default “Courier New” doesn’t support this combining character. Please use a supporting font, for example, Tahoma or Consolas, to show this character.
Thanks.
Yutaka Emura
KeymasterHello Stefan,
Thank you for showing the screencast. The bug was fixed on beta 2:
https://www.emeditor.com/forums/topic/emeditor-v14-9-0-beta-2/
Thank you!
Yutaka Emura
KeymasterHi Stefan,
2) It is more complicated that just “only”, and I also found some bugs with the current implementations. I will look into the bugs.
3) I am not sure if I understand the problem. Can you include a sample in this forum, or email me a sample file? I would like to reproduce the problem.
Thanks!
Yutaka Emura
KeymasterHello Stefan,
As for your first question with the CSV example from Stack Overflow. Embedded newlines mean those M and J reversed symbols (\r and \n characters) in CSV cells. These become embedded in a single line when you switch to a CSV mode, while separated into multiple lines when you switch to the Normal Mode. Does this answer your question?
As for the second question, you should use “version(.|[\r\n])+5” for the regular expression, or check the “Regular Expressions “.” Can Match New Line Characters” check box in the Search tab of the Customize dialog box.
Thanks,
Yutaka Emura
KeymasterHello,
Currently, there is no option like “auto return to the start of document when I search at the end of the document” for markers.
Is this something you wish to have in future versions? If so, I will consider it in future versions.Thanks!
Yutaka Emura
KeymasterHello,
You can use a regular expression. For example:
sys|appThanks!
Yutaka Emura
KeymasterHello LifeTimer,
This feature is added now:
https://www.emeditor.com/forums/topic/emeditor-v14-8-0-beta-1/
Thank you!
January 21, 2015 at 4:05 pm in reply to: How can I search multiple items in one .txt file one by one? #19802Yutaka Emura
KeymasterHello Mike,
This feature is added now:
https://www.emeditor.com/forums/topic/emeditor-v14-8-0-beta-1/
Join CSV feature.
January 21, 2015 at 4:03 pm in reply to: Feature request: Macro command for removing Advanced Filter levels #19801Yutaka Emura
KeymasterHello LifeTimer,
This feature is added now:
https://www.emeditor.com/forums/topic/emeditor-v14-8-0-beta-1/
The macro looks like this:
document.Filter("", 0, eeFindRemoveLast);Thank you!
Yutaka Emura
KeymasterHello LifeTimer,
You are right. According to WikiPedia, %uxxxx is non-standard implementations. However, is this still common use? If so, I might have to support this.
Thanks!
January 11, 2015 at 9:10 pm in reply to: How can I search multiple items in one .txt file one by one? #19772Yutaka Emura
KeymasterHello Mike,
Thanks for explanation. This is like the JOINT feature of SQL, and I was thinking about this in future versions. Please wait for future versions.
Meanwhile, you can write a macro like this:
doc1 = editor.Documents.Item(1); doc2 = editor.Documents.Item(2); editor.NewFile(); doc3 = document; doc1.Activate(); nLines1 = doc1.GetLines(); doc2.Activate(); nLines2 = doc2.GetLines(); for( y2 = 1; y2 <= nLines2; y2++ ) { doc2.Activate(); s2 = doc2.GetLine( y2 ); if( s2 == "" ) continue; doc1.Activate(); for( y1 = 1; y1 <= nLines1; y1++ ) { s1 = doc1.GetCell( y1, 1, eeCellIncludeNone ); if( s1 == "" ) continue; if( s1 == s2 ) { sResult = doc1.GetCell( y1, 2, eeCellIncludeNone ); doc3.Activate(); doc3.writeln( s2 + "\t" + sResult ); break; } } }Thanks!
January 11, 2015 at 3:14 pm in reply to: Feature request: Macro command for removing Advanced Filter levels #19770Yutaka Emura
KeymasterHello LifeTimer,
I will look into this issue.
Thank you!January 11, 2015 at 3:12 pm in reply to: How can I search multiple items in one .txt file one by one? #19769Yutaka Emura
KeymasterHello Mike,
I am not sure exactly what you want to do. Can you show me an example?
Thank you!
Yutaka Emura
KeymasterHello,
Since this error happens inside the regular expression engine (Boost regex++), I can’t control what happens inside the regex engine.
What number did you set to the Additional Lines to Search for Regular Expressions text box, and did you set or clear the Regular Expressions “.” Can Match New Line Characters check box?
There might be a different reason so would you send me a sample file (after zipped) to [email protected] along with the Registry file (exported at HKEY_CURRENT_USER\Software\EmSoft, please zip the file)? I will try to reproduce the issue here.
Thank you,
December 23, 2014 at 2:26 pm in reply to: Macro support for adding new Advanced Filter level? #19744Yutaka Emura
KeymasterHello LifeTimer,
v14.7.1 beta 2 can now record the filter operations with macros.
There is a breaking change in beta 2, where the second paramter for the Filter method now specifies one-based index of the specified column.
https://www.emeditor.com/forums/topic/emeditor-v14-7-1-beta-1/#post-19743
In case of the example above, you will have to write as this:
document.Filter(document.selection.Text, 0, eeFindKeepPrevious | eeFindNegative);Thanks!
Yutaka Emura
KeymasterToday, we are releasing EmEditor v14.7.1 beta 2.
Updates from v14.7.1 beta 1 include:
Bug Fixes
- The second paramter for the Filter method now specifies one-based index of the specified column.
- The Record Macro command can now record filtering.
- Russian language files updated.
To Download
http://www.emurasoft.com/pub/beta/emed64_14.7.1_beta2.exe (64-bit)
http://www.emurasoft.com/pub/beta/emed32_14.7.1_beta2.exe (32-bit)These files will be deleted when official release versions become available. The official releases can be downloaded at the Download page.
How to create portable version:
https://www.emeditor.com/support/#toggle-id-12
Thank you for continue using EmEditor!
December 22, 2014 at 5:13 pm in reply to: Macro support for adding new Advanced Filter level? #19733Yutaka Emura
KeymasterHello LifeTimer,
I released a test version of the next version. Please try it and see if macros work as expected.
https://www.emeditor.com/forums/topic/emeditor-v14-7-1-beta-1/
Thank you!
- AuthorPosts