Forum Replies Created
- AuthorPosts
Yutaka Emura
KeymasterHello,
Have you applied SP4 to your Windows 2000?
I can’t reproduce this issue.Yutaka Emura
KeymasterHello Derek,
When you add a macro to a menu, there is a text box called “Name” on the Menu Properties. You can enter whatever name you want to be appeared in the menu.
Yutaka Emura
KeymasterHello CrashNBurn,
I am sorry, but I don’t know why that happened. Did you use “Save, Restore and Keep Undo Information” selected for “Automatic Workspace” on the Window tab of Customize dialog? I will take a close look at this issue.
Thank you!Yutaka Emura
KeymasterHello CrashNBurn,
Yes, it is a feature of EmEditor Professional. On the Tools menu, you can select “Import and Export” and select one of “Set up a removable drive such as a USB drive…” items. The portable version of EmEditor Professional is also available for download at Emurasoft Customer Center.
Yutaka Emura
KeymasterCurrently, this is the specification. We might consider this issue in the future. Thank you.
Yutaka Emura
KeymasterHello chjfth,
There is no easy way to do this, but I wrote this code for you:
if( document.selection.Find( "<(.+)>", eeFindReplaceRegExp | eeFindNext) ){
x1 = document.selection.GetTopPointX( eePosLogical );
y1 = document.selection.GetTopPointY( eePosLogical );
x2 = document.selection.GetBottomPointX( eePosLogical );
y2 = document.selection.GetBottomPointY( eePosLogical );
sLine1 = document.GetLine( y2 );
document.selection.Replace( "<(.+)>", "@1", eeFindReplaceRegExp);
sLine2 = document.GetLine( y2 );
x2 += sLine2.length - sLine1.length;
document.selection.SetActivePoint( eePosLogical, x1, y1 );
document.selection.SetActivePoint( eePosLogical, x2, y2, true );
}I am sorry, but this code doesn’t support eeReplaceSelOnly flag. I still hope this helps.
September 22, 2010 at 5:08 pm in reply to: Split text file into multiple files based on string #9002Yutaka Emura
KeymasterHello SSI,
Here is a JavaScript macro for this purpose:
document.selection.SelectAll();
var textArray = document.selection.Text.split("X");
for( i = 0; i < textArray.length; i++ ){
editor.NewFile();
document.write( textArray[i] );
}I hope this helps.
September 22, 2010 at 4:33 pm in reply to: Saving a file with both CRLF and solo LF characaters #9000Yutaka Emura
KeymasterHello SSI,
If you are trying to combine two files into one by copy and paste, you might need to check “Preserve (CR/LF) returns on Clipboard” before you copy and paste text from one file to another.
Or in Command Prompt, you can type
COPY /B A.txt+B.txt C.txt
If you are manually inserting a return, EmEditor will automatically adjust the return method using one at the cursor. To insert a specific return, you can select under Tools menu, All Commands > Edit > Insert > CR only, LF only, or CR+LF. On the Keyboard Map (under Help), you can assign any keyboard shortcuts as these commands.
I hope this helps.
Thank you!Yutaka Emura
KeymasterHello user,
You might want to check “Always Enable 1 Page Vertical Scroll” check box in the Scroll tab of configuration properties. This way, the cursor can move around top to bottom wherever you are trying to edit.
I hope this helps. Thanks!
Yutaka Emura
KeymasterHello Derek,
Not all operations are recorded automatically. Please see Help for macro methods. Here is an example:
Narrowing on:
editor.ExecuteCommandByID(4457);
http://www.emeditor.com/help/cmd/edit/narrowing_on.htmNarrowing off:
editor.ExecuteCommandByID(4458);
http://www.emeditor.com/help/cmd/edit/narrowing_off.htmSort A to Z:
editor.ExecuteCommandByID(4477);
http://www.emeditor.com/help/cmd/edit/sort_text_a.htmYutaka Emura
KeymasterI might think about those features in the future.
Thanks!Yutaka Emura
KeymasterHello pja,
You can add numbering in front of snippet titles, but that’s the only way I can think of. I might consider the sorting option in the future. Thanks for your inputs!
September 16, 2010 at 9:33 pm in reply to: 'html toolbars' disappear every time restart emEditor #8978Yutaka Emura
KeymasterHello mwcd,
If you right-click on the HTML Bar button on the Plug-ins toolbar, a context menu will appear. At the bottom of this menu, you will see “Properties”. Please click on this.
Thanks!
September 16, 2010 at 3:57 am in reply to: 'html toolbars' disappear every time restart emEditor #8976Yutaka Emura
KeymasterHello mwcd,
It is not a bug. If you want the HTML bar appear every time you start EmEditor, please check “Automatically display the HTML Bar for selected configurations” check box, and check all configurations applied.
September 14, 2010 at 6:14 pm in reply to: Find in Files; Independent Process; Pinned; Recent File List #8973Yutaka Emura
KeymasterHello LTT,
1.
Open Find in Files dialog in an EmEditor window. Then, with the dialog open, close this window. All the windows of this process will be terminated!I couldn’t reproduce this issue.
2.
Single-process mode.
Open the first window by any way without using the command line option /sp.
This process (A) reads the Recent File List from the registry only when its first window opens, and saves the list to the registry only when its last window closes.
Now run a new process by using /sp.
This process (B) always synchronizes the Recent File List from/to the registry.
So, if A is closed after B, All the changes of the Recent File List in the registry changed by B will be overwritten!3.
Opening the Recent File List menu in a new, independent-process window will cause all the pinned files to be removed from the menu!I realize these issues, but separate processes are not completely supported.
4.
In a Find-in-Files result, a path will not be highlighted (or highlighted completely) if the file name contains such a regular expression match:
(.*)x20Path containing spaces are not supported intentionally.
I hope these make sense except 1.
Thank you!September 14, 2010 at 5:27 am in reply to: Search/Replace : Search All Documents in this Window #8965Yutaka Emura
KeymasterHello CrashNBurn,
Then, how about “Search All Open Documents” option in the Find/Replace dialog box?
September 13, 2010 at 11:50 pm in reply to: Click on Current/Active Tab -> Go to previous Active Tab #8959Yutaka Emura
KeymasterHello CrashNBurn,
Did you know you can customize some mouse button behavior on the Mouse tab of the Customize dialog box? It doesn’t include “Minimize” command, however. You can specify Close command, for instance. Please be more specific about “Minimize” command. Do you want to specify “New Minimized Group” command?
September 13, 2010 at 11:48 pm in reply to: Edit | Separated Values/Sort [OPTION] Only Selected #8958Yutaka Emura
KeymasterHello CrashNBurn,
You can also use the Narrowing command (on the Edit menu) to select where you want to sort, but this still requires several steps to accomplish. I might consider an easier way in the future. Thanks!
Yutaka Emura
KeymasterHello,
I might consider those options in the future.
Thanks!September 13, 2010 at 11:46 pm in reply to: Search/Replace : Search All Documents in this Window #8956Yutaka Emura
KeymasterIn the Find in Files or Replace in Files dialog, you can select “Current File” in the menu displayed when you click the “>” button by the File Types drop-down list.
Yutaka Emura
KeymasterOn Version 10, this check box has been deprecated, but there are new options on the menu displayed when you click the “>” button by the Find drop-down list box (in the Find dialog box). In this menu, three options available: “Selected Text”, “Word at Cursor”, and “Custom”. After selecting one of these, you can select “Save as Default” to save this option for the future.
I hope this helps. Please let me know if you have any questions.
Yutaka Emura
KeymasterHello CrashNBurn,
I don’t know about the other application you mentioned, but I didn’t know about ALT + numbers behavior. Both Windows Notepad and EmEditor insert the same symbols. I think that is the Windows behavior. Those are Unicode characters and that is why they can’t be saved as ASCII. You can save them as a Unicode file. The other application assigns ALT+0x as inserting control characters ( Advanced > Insert Special Character. I hope this helps.
Thank you!
Yutaka Emura
KeymasterHello CrashNBurn,
You can find current encoding on the status bar.
Also, you can have EmEditor display the return method (CR, LF, or CR+LF) if you customize the status bar (On the Customize dialog > Status > Return Method).
Please let me know if you have further questions.
Thank you!
Yutaka Emura
KeymasterHello CrashNBurn,
You might want to try Zen-coding plug-in/macros.
http://www.emeditor.com/modules/feature1/rewrite/tc_37.htmlIn Zen-coding, the Balance Tag action selects text between and .
Key-word completion can be accomplished using the WordComplete plug-in, which is installed by default.
Please let me know if you have further questions.
Thank you!
Yutaka Emura
KeymasterHello tungwaiyip,
I am sorry, but you can’t add new characters for matching brackets. I might consider that feature in the future.
Thank you,- AuthorPosts