Forum Replies Created
- AuthorPosts
Yutaka Emura
KeymasterSteven,
The only way I can think of is to disable the highlight of quoted strings.
Thanks,
Yutaka Emura
KeymasterHello owilsky,
I reproduced this issue. I have already fixed this bug on my PC, so it will be fixed on the next version.
Thank you!
Yutaka Emura
KeymasterPlease right-click on Word Complete button on the Plug-ins toolbar. This brings up the Word Complete Properties. click “Properties” button, then select Keyboard tab.
Please let me know if you have further questions. Thank you!
November 11, 2010 at 1:50 am in reply to: Posted by mistake as separate thread – please delete #9093Yutaka Emura
KeymasterHello Deipotent,
I might consider those options in future versions.
Thank you,Yutaka Emura
KeymasterHi owilsky,
I can’t reproduce the issue. Can you please send me your settings (after zipped) to [email protected]? Then please write the detail procedure to reproduce the issue, the file name used, how to open the file, etc.
Thank you!
Yutaka Emura
KeymasterI couldn’t find emails with your name oCameLo. Did you translate v10 already? Can you please send me again? When you send me email, please identify yourself as oCameLo.
Thank you!
October 30, 2010 at 9:28 pm in reply to: Buy EmEditor from Emurasoft directly paying with Euros? #9079Yutaka Emura
KeymasterI am sorry, but I can’t help with VAT. You will have to pay VAT if you buy from Europe.
Yutaka Emura
KeymasterHi banita,
I am sorry, but there is no good way to copy a part of differences. You can simply select the place you want to copy, and paste to the destination file.
October 30, 2010 at 5:04 pm in reply to: Buy EmEditor from Emurasoft directly paying with Euros? #9075Yutaka Emura
KeymasterIt shouldn’t be so high. Share-it converts currency according to the foreign exchange rate of the day you order. It won’t add any fees just because you use a different currency. When I tested today, a license costs only EUR 31.81. You can remove “Extended Download” from your cart because you don’t need it.
Can you please try again?Thank you,
Yutaka Emura
KeymasterHi,
Are you using the latest version of EmEditor — currently 10.0.4?
Please select Customize Update Checker on the Help menu, and which folder is specified for the Downloads Folder?
Does this folder exist?Thanks!
Yutaka Emura
KeymasterHello QiaoJiao,
You cannot toggle outline if the “Turn off Outline Guide when Custom Bar is not displayed” checkbox is not checked.
Thanks!
Yutaka Emura
KeymasterHello CrashNBurn,
I reproduced this issue, and I already fixed that on my PC. You will see the issue fixed when the next version becomes available. Thanks for your input!
October 20, 2010 at 4:58 pm in reply to: Extract Text to new document with support for both Find & Replacement Regular Expressions… #9066Yutaka Emura
KeymasterHello Deipotent and CrashNBurn,
I will consider those options in future versions.
Thanks for your inputs!Yutaka Emura
KeymasterEmEditor doesn’t use RTF. You might be interested in this macro:
http://www.emeditor.com/modules/mydownloads/singlefile.php?cid=8&lid=190
Yutaka Emura
KeymasterHello user,
Please check “Always Enable Savings” check box in the Save Details dialog box (Configuration Properties > File tab > Saving button).
Yutaka Emura
KeymasterHello,
As you might already notice, “Search All Open Documents” cannot be used with “In the Selection Only” together.
Likewise, “Find Next” or “Replace” buttons are disabled when “In the Selection Only” is checked.
Please let me know if you have further questions.
Thank you,Yutaka Emura
KeymasterHello rayd,
The selection search is not supported in EmEditor in any versions. You can only replace within a selection.
Thank you!
Yutaka Emura
KeymasterHello,
Have you applied SP4 to your Windows 2000?
I can’t reproduce this issue.Yutaka Emura
KeymasterHello Derek,
When you add a macro to a menu, there is a text box called “Name” on the Menu Properties. You can enter whatever name you want to be appeared in the menu.
Yutaka Emura
KeymasterHello CrashNBurn,
I am sorry, but I don’t know why that happened. Did you use “Save, Restore and Keep Undo Information” selected for “Automatic Workspace” on the Window tab of Customize dialog? I will take a close look at this issue.
Thank you!Yutaka Emura
KeymasterHello CrashNBurn,
Yes, it is a feature of EmEditor Professional. On the Tools menu, you can select “Import and Export” and select one of “Set up a removable drive such as a USB drive…” items. The portable version of EmEditor Professional is also available for download at Emurasoft Customer Center.
Yutaka Emura
KeymasterCurrently, this is the specification. We might consider this issue in the future. Thank you.
Yutaka Emura
KeymasterHello chjfth,
There is no easy way to do this, but I wrote this code for you:
if( document.selection.Find( "<(.+)>", eeFindReplaceRegExp | eeFindNext) ){
x1 = document.selection.GetTopPointX( eePosLogical );
y1 = document.selection.GetTopPointY( eePosLogical );
x2 = document.selection.GetBottomPointX( eePosLogical );
y2 = document.selection.GetBottomPointY( eePosLogical );
sLine1 = document.GetLine( y2 );
document.selection.Replace( "<(.+)>", "@1", eeFindReplaceRegExp);
sLine2 = document.GetLine( y2 );
x2 += sLine2.length - sLine1.length;
document.selection.SetActivePoint( eePosLogical, x1, y1 );
document.selection.SetActivePoint( eePosLogical, x2, y2, true );
}I am sorry, but this code doesn’t support eeReplaceSelOnly flag. I still hope this helps.
September 22, 2010 at 5:08 pm in reply to: Split text file into multiple files based on string #9002Yutaka Emura
KeymasterHello SSI,
Here is a JavaScript macro for this purpose:
document.selection.SelectAll();
var textArray = document.selection.Text.split("X");
for( i = 0; i < textArray.length; i++ ){
editor.NewFile();
document.write( textArray[i] );
}I hope this helps.
September 22, 2010 at 4:33 pm in reply to: Saving a file with both CRLF and solo LF characaters #9000Yutaka Emura
KeymasterHello SSI,
If you are trying to combine two files into one by copy and paste, you might need to check “Preserve (CR/LF) returns on Clipboard” before you copy and paste text from one file to another.
Or in Command Prompt, you can type
COPY /B A.txt+B.txt C.txt
If you are manually inserting a return, EmEditor will automatically adjust the return method using one at the cursor. To insert a specific return, you can select under Tools menu, All Commands > Edit > Insert > CR only, LF only, or CR+LF. On the Keyboard Map (under Help), you can assign any keyboard shortcuts as these commands.
I hope this helps.
Thank you!- AuthorPosts