Forum Replies Created
- AuthorPosts
Yutaka Emura
KeymasterHello Dreven,
I know all about the features you are talking about.
Thanks for explaining!Yutaka Emura
KeymasterHello Dreven,
Thanks for your comments about EmEditor.
As for rhtml/ruby append symbol (<<), maybe you can post a sample code where the problem happens, or you can email me a file at [email protected], and I will make sure to consider the issue in future versions.
You can find additional themes in the library http://www.emeditor.com/modules/mydownloads/viewcat.php?cid=13
I will also try to modify the default themes in the future.
I might also consider the missing feature where you can select a word to highlight the word, and every other instance of it is highlighted.
And I will also try to improve the keyboard search ability.
Thanks!
Yutaka Emura
KeymasterHello owilsky,
You will need to load the Config object into the memory before you can modify and save it. Please rewrite like this:
#title = "Marks"
#tooltip = "Toggle Marks ON/OFF"
editor.ExecuteCommandByID(4370); //EEID_VIEW_MARKS (4370)
cfg = document.Config;
if(cfg.Mark.ShowReturns) cfg.Mark.ShowSpaces = true;
else cfg.Mark.ShowSpaces = false;
cfg.Save();
August 30, 2010 at 5:30 am in reply to: Bring EE's encoding detection/display to Hex mode side by side view. #8899Yutaka Emura
KeymasterHi zhouzh2,
OK. Thanks for your explanation. I might consider that in future versions.
Yutaka Emura
KeymasterHello cx138,
I already realized this issue, and it should be fixed on the next minor version.
Thanks!August 29, 2010 at 5:22 pm in reply to: Bring EE's encoding detection/display to Hex mode side by side view. #8895Yutaka Emura
KeymasterHello zhouzh2,
Sorry, exactly what is the issue?
Thanks!Yutaka Emura
KeymasterHi owilsky,
The Marks command toggles only new line, EOF and tab marks, and does not include spaces. This is the specification. On v10, you can use independent commands on the View menu to toggle each mark.
Yutaka Emura
KeymasterHello Jibz,
I have never used “read mark” features, but you might want to use notification messages. Please see:
http://www.emeditor.com/modules/newbb/viewtopic.php?topic_id=5&forum=1Also, you can see the list of newest messages in the bottom of the home page when you are logged in.
August 26, 2010 at 8:06 pm in reply to: RegExp highlighting sometimes matches inside strings and comments #8886Yutaka Emura
KeymasterHello Jibz,
I reproduce the issue now by the way you described.
I will look into this issue.
Thanks!August 26, 2010 at 5:59 pm in reply to: RegExp highlighting sometimes matches inside strings and comments #8884Yutaka Emura
KeymasterHello Jibz,
I am sorry but I couldn’t reproduce your issue. Did you add d+ as a regular expression at the bottom of the list of highlight strings in the Highlight (1) tab of C++ configuration properties?
Yutaka Emura
KeymasterHello Jibz,
I might add that feature in future versions of EmEditor.
Thanks for your comments!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!- AuthorPosts