Forum Replies Created
- AuthorPosts
Yutaka Emura
KeymasterSorry, that was a wrong post. Please ignore it.
Yutaka Emura
KeymasterHello mongo,
I will consider those in future versions. As for the address display, you can display the Line Numbers that are displayed as Hexadecimal address when you view as hex mode.
Thanks,
Yutaka Emura
KeymasterYou are welcome!
Yutaka Emura
KeymasterIf you search for “SHA1 hash” in the internet, you will find many utilities that can calculate a program SHA1 hash.
For instance, MD5 & SHA-1 Checksum Utility 1.1 http://download.cnet.com/MD5-SHA-1-Checksum-Utility/3000-2092_4-10911445.html is one of those utilities.
I hope this helps.
Yutaka Emura
KeymasterIn Find in Files, you have to use “rn” instead of “n”. Please use see
http://www.emeditor.com/help/howto/search/search_nl.htm
for details.I will see if a regular expression string appears at the “In folder” text box.
Thank you,
Yutaka Emura
KeymasterI am glad it was fixed already.
Thank you,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.
- AuthorPosts