Forum Replies Created
- AuthorPosts
- Yutaka EmuraKeymaster
You probably have selected “Clear Type” in Display Properties – Apearance tab – Effects. I will try to fix this. Thanks!
Yutaka EmuraKeymasterYou can customize on/off per configuration. Did you go to the plug-in properties? You can right-click on the Outline button or window, and select “Properties”.
Yutaka EmuraKeymasterYou can write functions in VBScript or JavaScript, but I am not sure if you can write functions in separate files so you can include those.
Yutaka EmuraKeymasterSure.
Yutaka EmuraKeymasterDid you try Outline plug-in? Did you want something different?
Yutaka EmuraKeymasterI don’t want to make it a core feature because of my principle — avoid bloated feature set —.
However, I created a macro for you. Although it is not perfect, you can do the rest of work to make it perfect for you. This is for Java.
str = clipboardData.getData("Text");
str = """ + str.replace(/rn/mg,"n" +rn"") + "";";
document.write( str );
Yutaka EmuraKeymasterThank you for reporting a possible bug. I will try to repro and fix this issue.
Yutaka EmuraKeymasterWhile I cannot make any commitments and cannot give you any timeline, I consider the USB option seriously. However, it will not happen in a few months.
Yutaka EmuraKeymasterYou can go to Keyboard map on the Help menu, and assign any keyboard to any macros.
Yutaka EmuraKeymasterI realize this is frequently asked, and I will consider that in future versions.
Yutaka EmuraKeymasterThat is true. You cannot get the entire text except by first selecting the entire document by SelectAll() method.
Yutaka EmuraKeymasterThat is not possible right now. I will consider this feature in future version.
Yutaka EmuraKeymasterThanks for your comments. EmEditor wants to make everything simple, and that’s why I didn’t add a code to save dialog box positions. I didn’t even want to add the “center window” code, but, I might reconsider that.
Yutaka EmuraKeymasterWell, all you can do is open multiple windows and tile them. You will first need to disable tabs by unchecking Enable Tabs on the Window menu. Then select Tile Vertically on the Window menu. You can now open two documents in separate windows.
.Yutaka EmuraKeymasterAre you looking for workspace or project features? In the EmEditor tray-icon menu, you can find Load/Save Workspace commands, which allow you to save or load one workspace. There is no command to load or save multiple workspaces, but it might be possible by a plug-in.
Yutaka EmuraKeymasterOK. I will try to improve this interface. Thanks for your opinions!
Yutaka EmuraKeymasterCurrently, there is no way to define word delimiters. I will consider that in future versions.
Yutaka EmuraKeymasterUse regular expression:
(.*?)
See also:
http://www.emeditor.com/help/howto/search/search_regexp_syntax.htm
http://www.emeditor.com/help/faq/search/search_reg_exp_ex.htmYutaka EmuraKeymasterI believe it is 1/12 of the font height. You cannot change this unit.
Yutaka EmuraKeymasterSearch for a regular expression [characters]? You must show an example.
Yutaka EmuraKeymasterIt must be an integer value.
Yutaka EmuraKeymasterNo, it isn’t possible.
Yutaka EmuraKeymasterNo. I might consider that in future versions.
Yutaka EmuraKeymasterYou cannot create a button, but you can associate a keyboard shortcut to run a particular macro you created.
Yutaka EmuraKeymasterI am not sure what language you are looking for, but see: http://www.emeditor.com/help/faq/search/search_reg_exp_ex.htm
For instance, If you want to highlight only Hiragana, you can use [x{3041}-x{309e}] as a regular expression to search for.
- AuthorPosts