Forum Replies Created
- AuthorPosts
- February 22, 2013 at 8:06 pm in reply to: A text with periods gets replaced with spaces when escape sequence option used #10854
Yutaka Emura
KeymasterI see. So it doesn’t have to be “test.test.test.com”, right?
e is not defined, so undefined escape sequences should not be used. Please use “e” instead.
Thanks!
February 22, 2013 at 6:45 pm in reply to: A text with periods gets replaced with spaces when escape sequence option used #10852Yutaka Emura
KeymasterHi ArthurZ,
I am sorry I didn’t understand your question.
Can you please try to rewrite with a simple sample, or you can email me at [email protected] with samples.Thanks!
Yutaka Emura
KeymasterHello Salabim,
This is an expected result. Since you are trying to match from a new line character (n, 1) to the next n (3), the next search will begin after the second n (3). For instance, after “nlern” is matched, the following search will begin at “lers”.
If you need to search every line, you will need to remove either 1 or 3, or you might want to use lookahead or lookbehind search. Please see
http://www.emeditor.com/help/howto/search/search_regexp_syntax.htm
for details about the syntax of regular expressions.
I hope this helps you understand.
Thanks!
Yutaka Emura
KeymasterHello,
The “&” highlight is probably one of highlight list you can define at the Highlight (1) tab of HTML configuration properties.
Thanks!
Yutaka Emura
KeymasterHello David,
The command line is not for this kind of task. Please use EmEditor user interface, or an EmEditor macro to do this task. You can call an EmEditor macro from a command line, too.
Thanks!
Yutaka Emura
KeymasterHello,
CTRL + Mouse Wheel only changes the font size. Please adjust the font size from the View menu – Fonts, and you can go back to normal size.
Thanks!
February 13, 2013 at 8:46 pm in reply to: How to retrieve the first clip when system clipboard is non-text? #10838Yutaka Emura
KeymasterHello LTT,
Currently, MaxClipboardHistory is not actually used to specify the maximum number, but it only turns on or off the Clipboard history and also turns on or off monitoring the external application.
The maximum number of the clipboard history is always 32, or 33 if you count the current actual clipboard contents in addition to 32 items in the history.
Thanks!
Yutaka Emura
KeymasterNo, we only fixed critical bugs this time. I will consider this in the next major version.
Thanks!
February 11, 2013 at 5:24 pm in reply to: Horizontal scroll bar always shown when set to display when necessary #10832Yutaka Emura
KeymasterHi,
I am sorry, I am not sure what you wanted to ask.
I can say this check box “Always Enable 1 Page Horizontal Scroll” is not really useful. I might have to remove this check box.
Thanks!
February 10, 2013 at 9:29 pm in reply to: Horizontal scroll bar always shown when set to display when necessary #10829Yutaka Emura
KeymasterHello,
I received your email. Please clear the “Always Enable 1 Page Horizontal Scroll” check box on the Scroll tab of configuration properties.
Thanks!
February 8, 2013 at 4:43 am in reply to: Horizontal scroll bar always shown when set to display when necessary #10827Yutaka Emura
KeymasterHello,
I can’t reproduce this issue, but there must be a certain combinations of settings that triggers the issue. Would you please export the Registry at HKEY_CURRENT_USERSoftwareEmSoft, zip the registry file and a sample file to reproduce the issue, and email the zip file to [email protected]?
Thanks!
Yutaka Emura
KeymasterHello,
This macro should sort the selected text from long to short.
document.selection.text = ((document.selection.text.split("n")).sort(function(a,b){return b.length-a.length})).join('n');
If you want to sort lines from short to long, please use this:
document.selection.text = ((document.selection.text.split("n")).sort(function(a,b){return a.length-b.length})).join('n');
Please select the whole document (CTRL + A) before you run this macro if you want to sort the entire document.
Thanks!
Yutaka Emura
KeymasterHello,
Can you try both “Properties for Current Configuration” and “Properties for All Configurations” to remove the SHIFT + S shortcut from your macro? You can also press “Reset” on “Properties for All Configurations” to completely reset shortcuts although you might not want to reset all.
Thanks!
Yutaka Emura
KeymasterHello,
I couldn’t reproduce the issue, but I believe there is a bug. I just can’t reproduce the same procedure or conditions that you have.
However, you can try this if something is not synchronized on the Macros toolbar: Please right-click on the Macros toolbar, and select “Refresh”.
Thanks!
Yutaka Emura
KeymasterHello,
Do you need to sort by line length of a specific column, or the length of a whole line?
Yutaka Emura
KeymasterHello,
First, please try to copy a column including tabs in vertical selection mode. To do this easily, first make sure the Ruler is visible by selecting “View > Ruler” on the menu. Double-clicking on the Ruler above the column you want to copy — to select the specified column. Press CTRL + C to copy that column to the Clipboard, move the cursor to the beginning of the column where you want to paste the Clipboard, and then CTRL + V to insert the column.
If you want to copy data from a different file, please make sure to select as a vertical selection (pressing the ALT key while selecting, or press CTRL + SHIFT + F8 to start selecttion). This way, when you press CTRL + C to copy, the Clipboard contents are in the vertical selection mode.
I hope this helps. Thank you!
Yutaka Emura
KeymasterHello,
If you would like to sort according to length of line, you will have to write a macro to sort in that way. Would you like me to write sucn that macro? If so, please write the specification requirements for the macro. Thank you!
January 25, 2013 at 5:40 am in reply to: How to retrieve the first clip when system clipboard is non-text? #10791Yutaka Emura
KeymasterHello,
I realize this is an issue, but until now I coulnd’t figure out how to resolve this issue. Now that I figured out how to resolve this issue, I will fix this on the next version.
Until then, please check the “Monitor the Clipboard copied on External Applications” check box on the History tab of the Customize dialog box to work around the issue.
Thank you!
January 22, 2013 at 4:46 am in reply to: "Treat the following characters and alphanumeric" must reside in Properties of Configuration #10783Yutaka Emura
KeymasterHello,
I understand what you mean. I will consider moving that to configuration properties in future versions.
Thanks!
Yutaka Emura
KeymasterHello,
You might want to change the “Quote Character” text box on the General tab of configuration properties.
Thanks!
Yutaka Emura
KeymasterHello,
The “Insert New Lines” command is enabled only when you use one or wrap modes. If a line is wrapped, a new line is inserted to the wrapped point at each line.
I hope this makes sense.
Thank you!
January 18, 2013 at 7:19 pm in reply to: Projects Plugin: Adding an existing file using INSERT button to a subtree adds to the parent tree #10773Yutaka Emura
KeymasterHello,
I confirmed this was a bug, and it will be fixed on the next version. Thank you!
January 13, 2013 at 5:49 pm in reply to: Why Comment/Uncomment Functionality Becomes Enabled Only When Line(s) Selected? #10760Yutaka Emura
KeymasterYou are right; the above code was to comment in all cases.
To toggle the comment, it will a little more complicated. To uncomment in all cases, here is the code:
if( document.selection.IsEmpty ){
editor.ExecuteCommandByID(4154);
}
editor.ExecuteCommandByID(4372);Thanks!
Yutaka Emura
KeymasterNo, but you should be able to write a macro to do this.
Thanks!
January 11, 2013 at 5:47 pm in reply to: Why Comment/Uncomment Functionality Becomes Enabled Only When Line(s) Selected? #10753Yutaka Emura
KeymasterHello,
How about a macro like this:
[JavaScript]
if( document.selection.IsEmpty ){
editor.ExecuteCommandByID(4154);
}
editor.ExecuteCommandByID(4371);This macro will comment out the selection if the selections exists, or comment the current line if the selection does not exist.
Thanks!
- AuthorPosts