Forum Replies Created
- AuthorPosts
Yutaka Emura
KeymasterHello qjunkim,
I am sorry, but I don’t know about the front-end of R. I would be glad to help you if you can show me an easy example.
Thank you!
Yutaka Emura
KeymasterI am sorry, but I don’t know about M’s TeX plug-in. You might want to email the author of the plug-in directly. Thank you!
Yutaka Emura
KeymasterI made a macro for you. NextBookmark() method will return false if EmEditor can’t find the next bookmark in the document.
bFound = document.selection.NextBookmark();
if( !bFound ){
document.selection.StartOfDocument(false);
document.selection.NextBookmark();
}
Yutaka Emura
KeymasterI made a macro for you. Please let me know if you have any questions. Thank you!
document.selection.StartOfDocument(false);
document.selection.Find("^s*?<L>.*?</L>",eeFindNext | eeFindSaveHistory | eeFindAround | eeFindReplaceRegExp);
document.selection.CharLeft(false,1);
document.selection.StartOfDocument(true);
document.selection.Delete(1);
document.selection.EndOfDocument(false);
document.selection.Find("<L>.*?</L>s*?$",eeFindPrevious | eeFindSaveHistory | eeFindAround | eeFindReplaceRegExp);
document.selection.CharRight(false,2);
document.selection.EndOfDocument(true);
document.selection.Delete(1);
document.selection.Replace("^s*?<L>(.*?)</L>s*?$","1",eeFindNext | eeFindSaveHistory | eeReplaceAll | eeFindReplaceRegExp);
November 26, 2010 at 5:54 am in reply to: Locate a keyboard shortcut in Properties dialog, when key pressed #9120Yutaka Emura
KeymasterHi CrashNBurn,
I will consider that feature in future versions
Thanks!Yutaka Emura
KeymasterHello CrashNBurn,
I see. Then you will need to write a macro so that EmEditor will go to the beginning of document when it reaches to the end of document.
Thank you!
Yutaka Emura
KeymasterHello Derek,
You might want to assign F2 as “Next Bookmark in This Document” command. You can change keyboard assignments from the Keymap on the Help menu.
Thank you,
Yutaka Emura
KeymasterHi Steven,
No, but you can use Highlight (1) tab of configuration properties, and check “Highlight Right Side” or “Highlight Right All” to show the similar effect.
Thank you,
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!
- AuthorPosts