Forum Replies Created
- AuthorPosts
Yutaka Emura
KeymasterHello ujr,
The Administrator right is required only one time when your registration key is entered. Once you have entered the key, EmEditor will not ask you for admin rights any more.
Please let me know if you have further questions.Thanks,
Yutaka Emura
KeymasterHello derekcohen,
The file you downloaded might have been corrupted. You might want to go to Emurasoft Customer Center
https://www.emurasoft.com/support/login.php
and download again. After you download, please make sure to verify the file with SHA1.Thank you!
Yutaka Emura
KeymasterYou are welcome!
Yutaka Emura
KeymasterHi petx,
There was this bug when the Ruler is on. Please turn off the ruler or you can manually display the list of Word Complete by pressing CTRL + Space. I am very sorry for any inconveniences.
Yutaka Emura
KeymasterHi krushna,
Thanks for your comments!
Yutaka Emura
KeymasterI am sorry, but I can’t reproduce the issue. Can you please send me a screenshot at [email protected] and write a detail procedure to reproduce the issue? Thank you!
Yutaka Emura
KeymasterHello Derek,
Here is the macro to toggle between no wrap and wrap by window.
if( editor.QueryStatusByID( 4210 ) & eeStatusLatched ){
editor.ExecuteCommandByID( 4208 ); // no wrap
}
else {
editor.ExecuteCommandByID( 4210 ); // by window
}
Yutaka Emura
KeymasterHello emuser1,
I reproduced this issue, and will be fixed on v10.0.1.
Thank you!Yutaka Emura
KeymasterHello CrashNBurn,
It is not possible now, but I will consider improving this function. Thanks for your inputs!
Yutaka Emura
KeymasterHello CrashNBurn,
You can reassign F2 as “Next Bookmark in This Document” command.
Thanks!
Yutaka Emura
KeymasterHello dw7832,
I will definitely consider the improvement in future versions.
Thank you!
Yutaka Emura
KeymasterHi eos9d,
Thanks for your report, but this is the specification now. I might address this issue in future versions. Thank you!
Yutaka Emura
KeymasterHello Thyresias,
Can you try adding the eeFindSaveHistory flag to the Find method? This flag should save a searched string.
For details, please see:
http://www.emeditor.com/help/macro/selection/selection_find.htm
Unfortunately, I don’t think there are any ways to query EmEditor about the current find settings.
Yutaka Emura
KeymasterHello netsking,
Upgrading from v9.17 to v10 requires you to get a new key for v10. For this reason, I have not enabled the upgrade message for this update checker. However, I might enable the upgrade message when 10.0.1 becomes available.
Thanks for your message!Yutaka Emura
Keymaster“Least Accessed” is the opposite of “Last Accessed”. It is the same as “Previous Document” if “Switch to Last Used Document for Next Document Command” check box in the Window tab of Customize dialog box.
Yutaka Emura
KeymasterHi user,
You should be able to specify a regular expression to replace.
Please let me know if you have any questions.
Thanks,Yutaka Emura
KeymasterHello CrashNBurn,
Which version of EmEditor are you using?
August 6, 2010 at 6:27 pm in reply to: Add "Toggle-case" to "Uppercase", "Lowercase" and "Capitalize" commands #8820Yutaka Emura
KeymasterHello Meir,
You can easily do this using a macro. Here is an example but not including the Capitalize command. You can use this as a start to make it better.
s = document.selection.Text;
if( s.length != 0 ){
n = s.charCodeAt(0);
if( n >= 0x41 && n <= 0x5a ){
s = s.toLowerCase();
}
else {
s = s.toUpperCase();
}
document.selection.Text = s;
}
Yutaka Emura
KeymasterHello,
I am sorry you can’t use ` as a quote, but if you just want to highlight, in the Highlight (1) tab of configuration properties, you can add
`.*?`
and check “Regular Expression”.
I hope this helps.
August 3, 2010 at 1:24 am in reply to: How to run an external problem to execute the current file #8815Yutaka Emura
KeymasterHello hoody,
You should be able to configure your program.
Please see examples at:
http://www.emeditor.com/help/faq/tools/tools_external.htmIf you still have questions, please let me know.
Thank you,Yutaka Emura
KeymasterHello user,
Unfortunately, this option disables both color and underlines.
I think the only way to do is create a black and white theme and print it.You should be able to see margins in the print preview if the printer selection is correct.
I don’t know why you have margin issues.Yutaka Emura
KeymasterYou can adjust print margins from configuration properties > Print tab > Page Setup.
Yutaka Emura
KeymasterHello user,
I don’t know why some text is cut off, but please make sure your printer selection and margins in page setup dialog (configuration properties > Print tab > Page Setup button) are correct.
You can disable colors by checking “Ignore Color and Underlines” check box on the Print tab of configuration properties.
Yutaka Emura
KeymasterHi CrashNBurn,
I am sorry. I mean “Search Colors” text box, not “Character Space” in the Display tab of configuration properties.
Thanks!
Yutaka Emura
KeymasterHi CrashNBurn,
Thanks for your comments! You can also set “0” in the Character Space text box in the Display tab of configuration properties.
Thanks!
- AuthorPosts