Forum Replies Created
- AuthorPosts
Yutaka Emura
KeymasterHello,
The following macro will move the cursor to the n-th line.
document.selection.SetActivePoint(eePosLogical, 1, n);
Thanks!
Yutaka Emura
KeymasterHello LTT,
OK. eeFindSaveHistory will be supported on Find/ReplaceInFiles in the next version.
Thanks!
Yutaka Emura
KeymasterHello LTT,
I will fix the first issue.
As for the second issue, eeFindSaveHistory is not supported in Find/Replace in Files.
Thanks!
Yutaka Emura
KeymasterHi LTT,
I am fixing the “xml” vs. “XML” issue. Thanks!
Yutaka Emura
KeymasterHi LTT,
I am not sure your test environment. Is the “Enable Tabs” set? If you are using the Tabs, you won’t be able to close a new tab that is created during the macro because the “Confirm” dialog box is the foreground window. If the Enable Tabs is not set, you can close a new created window during the macro, but the macro will continue as expected. Please explain the detail procedure to reproduce the issue.
Thank you,
Yutaka Emura
KeymasterHello,
When you do something like below, you can change the configuration properties for C++:
cfg = document.Config;
cfg.Load( "C++" );
cfg.File.Delimiter = "|";
cfg.Save();
You can’t add or delete a configuration by macros.
Yutaka Emura
KeymasterHello,
There was no problem on Windows 7 or Windows 8, but the issue appears on Windows XP. I will try to fix on this issue on Windows XP.
Thanks!
Yutaka Emura
KeymasterHello,
1. You will need to load the Config object into the memory before you can modify and save it. Please rewrite like this:
cfg = document.Config;
cfg.File.Delimiter = cDSV;
cfg.Save();
2. I will add Delimiter to the help index.
Thanks!
Yutaka Emura
KeymasterHi LTT,
I can’t reproduce this issue. Can you write detail procedure to reproduce the issue? Are you using English UI?
Thank you.
November 19, 2012 at 6:34 pm in reply to: Show find highlight positions in the vertical scroll bar #10642Yutaka Emura
KeymasterHello,
I will consider something like this in future versions.
Thanks for your inputs!
Yutaka Emura
KeymasterHello,
If you just want to make your HTML prettier, you can use HTML tidy. You can search the internet for “HTML Tidy” to download the binary, and run that from an External Tool with EmEditor. See this screenshot:
November 18, 2012 at 9:16 pm in reply to: (document.selection.IsEmpty) Does Not Equal (document.selection.Text == "") ? #10637Yutaka Emura
KeymasterI will fix this on the next version.
Thanks!
November 14, 2012 at 6:31 pm in reply to: (document.selection.IsEmpty) Does Not Equal (document.selection.Text == "") ? #10629Yutaka Emura
KeymasterHello,
I will fix this by the next version.
Thank you!
Yutaka Emura
KeymasterHello,
I reproduced this issue, and it will be fixed on the next version.
Thanks!
Yutaka Emura
KeymasterHello,
I will consider this in future versions.
Thanks!
Yutaka Emura
KeymasterI will look into the code.
Thanks!
Yutaka Emura
KeymasterHello LTT,
I will fix those bugs.
Thanks!
November 5, 2012 at 7:02 pm in reply to: Drag and drop to the Find Toolbar: newlines invisible #10620Yutaka Emura
KeymasterHello,
You are right about it. I will fix this in future versions.
Thanks!
Yutaka Emura
KeymasterHello gordy,
We are just updating to new minor versions mainly to fix new bugs. (v12.0.0 -> 12.0.4) I realize some people do not appreciate these minor updates but we need to offer updates in order to resolve some customers who really need bug fixes and stability. I hope we don’t have to make updates any more until the next major version.
Thank you!
October 24, 2012 at 8:19 pm in reply to: Working with large SQL file, at some point editor background grays out #10608Yutaka Emura
KeymasterHello,
This seems like the Matching Tag Highlight feature of v12. You might want to clear the Highlight Matching Tag check box in the Highlight (2) tab of configuration properties if it is checked.
Yutaka Emura
KeymasterHello,
You might want to check “Save Cursor Position and Bookmarks” check box on the File tab of the Customize dialog box.
Thank you!
October 24, 2012 at 5:27 pm in reply to: Working with large SQL file, at some point editor background grays out #10604Yutaka Emura
KeymasterHello ArthurZ,
In order to reproduce the issue, can you please email me the following files (after zipped) at [email protected]?
– Please export your settings by selecting “Import and Export” on the Tools menu, select “Export all settings into a registry file”. You will find the exported .reg file.
– A sample SQL file that you can reproduce the issue.
Thank you!
Yutaka Emura
KeymasterHi,
The only way to find edited lines are that line numbers become highlighted (bold style) when the Line Number (on View menu) is checked.
Other than that, there is no way to indicated edited lines or saved lines. I will consider this in future versions.
Thank you!
Yutaka Emura
KeymasterHello LTT,
This is just because “H” is a part of “H_r”, and so “H” is matched before “H_r” is matched. This is the expected behavior.
Yutaka Emura
KeymasterHello LTT,
I noticed this is a bug of the Properties of the HTMLBar button. Currently, you will have to select “Customize” on this Special Command drop-down list in order to add the Font button. I will fix this by the next minor version.
Thank you!
- AuthorPosts