Forum Replies Created
- AuthorPosts
Yutaka Emura
KeymasterI use DEP on with Windows 7 (64-bit), but I have never had the problem. Which language do you use during install? If you don’t use English, can you retry installing EmEditor with English user interface? eeupdate.exe is not one of EmEditor programs, but it comes from Advanced Installer (installer program), so it is not easy to debug this problem, unfortunately.
Thank you,
Yutaka Emura
KeymasterNo, EmEditor can’t be a part of CMS.
Yutaka Emura
KeymasterHello bkr,
You will need to set colors in all configurations you use — HTML, JavaScript, and CSS configurations. Even if you open an HTML file, if JavaScript and CSS portions are embedded in the HTML file, EmEditor uses JavaScript and CSS configurations to determine colors in those portions.
Please let me know if you have further questions.
Thank you!Yutaka Emura
KeymasterHi bluenight9,
I reproduced this issue. I will look into this issue. Thank you!
Yutaka Emura
KeymasterHi,
I am sorry, but RTL text editing is not currently supported by EmEditor. I don’t have a plan to support RTL in the near future.
Yutaka Emura
KeymasterHello,
Can you please try:
>rn
I saw your message on my email inbox, too.
Thanks!
Yutaka Emura
KeymasterHello SansHobo,
How about “Open Documents” plug-in?
Yutaka Emura
KeymasterHello mguttman,
How about Tools menu > Import and Export?
Please let me know if you have further questions.
Thank you!Yutaka Emura
KeymasterHello mguttman,
I reproduced this issue. I will try to find what causes this issue.
Thank you!
Yutaka Emura
KeymasterHello XXCloneMan,
You can change those settings on the File tab of configuration Properties —
– Show File Name with Full Path
– Without Full Path if Not Activecheckboxes.
Thank you!
Yutaka Emura
KeymasterThere is a limitation in regards to how strictly implement these conditions. More strictly implement the highlight, slower EmEditor becomes. We have to choose a balance between features and speed. Currently, this is the specification, unfortunately. I might consider more strict implementation in future major versions.
Thank you,
Yutaka Emura
KeymasterI will work on these issues on the next major version.
Thank you!December 16, 2010 at 9:11 pm in reply to: Find in files gives up at line 6,238,810 out of 110,116,903 lines #9154Yutaka Emura
KeymasterCurrently, EmEditor doesn’t support Find in Files in very large files. It should display “…: failed to open” message, and continues to the next file.
However, I have just found one bug. I will fix this on the next minor version.
Thank you,
Yutaka Emura
KeymasterHi snovic,
Unfortunately, the macro recorder can only record keyboard activities in the editor. It can record mouse activities toward other applications, but it won’t record mouse activities within EmEditor.
To delete selected text,
document.selection.Delete();
is the macro you need.
Please let me know if you have further questions.
Thank you,
Yutaka Emura
KeymasterHi snovic,
eeFindSaveHistory is a new flag introduced on new version of EmEditor. I recommend you use the latest version of EmEditor, currently v10. If you need to use an old version, please remove “eeFindSaveHistory | ” from the macro.
Thank you,
Yutaka Emura
KeymasterHi snovic,
You shouldn’t use the macro recorder when you use my macro.
Please open a new file, paste the above macro, and save it as “a.jsee”.
Please select “Select…” on the Macros menu to select this macro (a.jsee).
Then open a .xsb file, and click “Run Macro a.jsee” on the Toolbar.
I hope this helps.Yutaka Emura
KeymasterHi CrashNBurn,
I reproduced this issue. If you uncheck “Double Quotation Marks” on the Highlight (2) tab of configuration properties, you won’t see this behavior. Currently, this is a specification, but I might consider improving the behavior in future versions. Thanks for your inputs!
Yutaka Emura
KeymasterHello qjunkim,
I am sorry, but I don’t know about the front-end of R. I would be glad to help you if you can show me an easy example.
Thank you!
Yutaka Emura
KeymasterI am sorry, but I don’t know about M’s TeX plug-in. You might want to email the author of the plug-in directly. Thank you!
Yutaka Emura
KeymasterI made a macro for you. NextBookmark() method will return false if EmEditor can’t find the next bookmark in the document.
bFound = document.selection.NextBookmark();
if( !bFound ){
document.selection.StartOfDocument(false);
document.selection.NextBookmark();
}
Yutaka Emura
KeymasterI made a macro for you. Please let me know if you have any questions. Thank you!
document.selection.StartOfDocument(false);
document.selection.Find("^s*?<L>.*?</L>",eeFindNext | eeFindSaveHistory | eeFindAround | eeFindReplaceRegExp);
document.selection.CharLeft(false,1);
document.selection.StartOfDocument(true);
document.selection.Delete(1);
document.selection.EndOfDocument(false);
document.selection.Find("<L>.*?</L>s*?$",eeFindPrevious | eeFindSaveHistory | eeFindAround | eeFindReplaceRegExp);
document.selection.CharRight(false,2);
document.selection.EndOfDocument(true);
document.selection.Delete(1);
document.selection.Replace("^s*?<L>(.*?)</L>s*?$","1",eeFindNext | eeFindSaveHistory | eeReplaceAll | eeFindReplaceRegExp);
November 26, 2010 at 5:54 am in reply to: Locate a keyboard shortcut in Properties dialog, when key pressed #9120Yutaka Emura
KeymasterHi CrashNBurn,
I will consider that feature in future versions
Thanks!Yutaka Emura
KeymasterHello CrashNBurn,
I see. Then you will need to write a macro so that EmEditor will go to the beginning of document when it reaches to the end of document.
Thank you!
Yutaka Emura
KeymasterHello Derek,
You might want to assign F2 as “Next Bookmark in This Document” command. You can change keyboard assignments from the Keymap on the Help menu.
Thank you,
Yutaka Emura
KeymasterHi Steven,
No, but you can use Highlight (1) tab of configuration properties, and check “Highlight Right Side” or “Highlight Right All” to show the similar effect.
Thank you,
- AuthorPosts