Forum Replies Created
- AuthorPosts
Yutaka Emura
KeymasterI realize this is frequently asked, and I will consider that in future versions.
Yutaka Emura
KeymasterThat is true. You cannot get the entire text except by first selecting the entire document by SelectAll() method.
Yutaka Emura
KeymasterThat is not possible right now. I will consider this feature in future version.
Yutaka Emura
KeymasterThanks 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 Emura
KeymasterWell, 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 Emura
KeymasterAre 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 Emura
KeymasterOK. I will try to improve this interface. Thanks for your opinions!
Yutaka Emura
KeymasterCurrently, there is no way to define word delimiters. I will consider that in future versions.
Yutaka Emura
KeymasterUse 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 Emura
KeymasterI believe it is 1/12 of the font height. You cannot change this unit.
Yutaka Emura
KeymasterSearch for a regular expression [characters]? You must show an example.
Yutaka Emura
KeymasterIt must be an integer value.
Yutaka Emura
KeymasterNo, it isn’t possible.
Yutaka Emura
KeymasterNo. I might consider that in future versions.
Yutaka Emura
KeymasterYou cannot create a button, but you can associate a keyboard shortcut to run a particular macro you created.
Yutaka Emura
KeymasterI 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.
Yutaka Emura
KeymasterIn the Replace dialog box,
Find: nnn
Replace with: nn
Check Use Escape SequenceThis will do what you want.
October 18, 2006 at 5:01 am in reply to: Comment / Uncomment current line without selecting text? #3907Yutaka Emura
KeymasterIf you have EmEditor Professional, you can write a macro like this (JavaScript):
var bEmpty = false;
if( document.selection.IsEmpty ){
editor.ExecuteCommandByID(4154); // Select line if not selected
bEmpty = true;
}
editor.ExecuteCommandByID(4371); // Comment. Use 4372 for Uncomment.
if( bEmpty ){
document.selection.Collapse();
}This macro can comment selected lines if selected, or comment the current line if not selected.
Then you can customize menus to insert this macro to anywhere you would like.
Yutaka Emura
KeymasterThanks for pointing out!
1. I reproduced your problem, and it is indeed different. For some reason, s+$ can match the last line of documents and one previous line from blank lines. Please use [[:blank:]]+$ instead, which should give you desired results. [[:blank:]] matches only horizontal white spaces while s can match both horizontal and vertical white spaces. I will take a look into this more closely, and see if I can fix this issue.
2. Create a simple macro like this (JavaScript):
document.HighlightTag = true;
Run this macro after reloading a Find in Files result file.
3. The search plug-in is somewhat premature since the source code is avaialble, and I am encouraging someone to extend this plug-in with more features. If no one is trying to develope the plug-in, I will consider doing that.
4. 5. 6. 7. I will consider your requests.
Thanks again!
October 16, 2006 at 11:37 pm in reply to: Cannot installl M's TeX Helper 2 (32-bit) in EmEditor 6.002 #3902Yutaka Emura
KeymasterI added mutual links to these pages. Thanks!
October 16, 2006 at 3:55 am in reply to: Cannot installl M's TeX Helper 2 (32-bit) in EmEditor 6.002 #3900Yutaka Emura
KeymasterI fixed the library description, and added the Japanese package. Thanks!
Yutaka Emura
KeymasterI had Save as … (encoding) commands in the main menu at a certain beta version, but some people (including me) found complicated, and even worse, deliberately chose a Save as … (encoding) command where they meant to reload with a correct encoding, and ruined existing files. That is why I hid these commands into the All Commands, but you can easily define your menus.
Unfortunately, Save as UTF-8 without BOM is not in a command list, but if you had EmEditor Professional, you would be able to write a simple JavaScript macro like this:
document.UnicodeSignature = false;
document.Save();You would be able to assign this macro to a menu item, and insert the menu item to anywhere you would like.
Thanks for your nice comments!
Yutaka Emura
KeymasterNo problem. For the rest of us, EmEditor already has a feature to auto-detect without displaying the result dialog box:
First, select Properties for Current Configuration (or All Configurations) on the Tools menu, select File tab, and check Detect All checkbox. Second, select Customize on the Tools menu, and clear Always Show Detect All Result checkbox. Now you can open a file with Auto Detect but without the Detect All Result dialog box.
October 15, 2006 at 3:07 am in reply to: Cannot installl M's TeX Helper 2 (32-bit) in EmEditor 6.002 #3894Yutaka Emura
KeymasterIf that is true, I will have to add the Japanese MTex2 to the library, and will note both needed.
Yutaka Emura
KeymasterCan you please send me a few Windows-1251 files or any files that can cause a problem (after zipped as .Zip) as an attachment. Please also write a list explaining which file should be opened as which encoding. My email address is [email protected]. I will need to repro your problem here to fix this issue. Thanks!
- AuthorPosts