Forum Replies Created
- AuthorPosts
- October 11, 2013 at 4:45 pm in reply to: Can a list of Bookmarks be shown on the side bar (similar to Outline PlugIn)? #17260
Yutaka Emura
KeymasterHello,
I created the Bookmarks plug-in.
32-bit:
http://www.emeditor.com/files/bookmarks13x86-zip/64-bit:
http://www.emeditor.com/files/bookmarks13x64-zip/Please click Facebook “Like it” button and Google+ “Follow” buttons.
Thank you!
Yutaka Emura
KeymasterHi LTT,
I will fix this in the next minor version.
Thank you!
Yutaka Emura
KeymasterPlease see :
How to Make EmEditor Plug-ins
http://www.emeditor.com/text-editor-features/extensibility/plug-ins/how-to-make-emeditor-plug-ins/Version 11 HTMLBar, OpenDocuments, Outline, Search, WordCount plug-in source code
http://www.emeditor.com/files/emeditor_plugins_src11-zip/Thanks!
Yutaka Emura
KeymasterHi LTT,
This issue will be fixed on the next minor version — v13.0.6.
Thank you!
Yutaka Emura
KeymasterHi LTT,
I reproduced this issue, and I will fix this on the next minor version.
Thanks!
October 5, 2013 at 11:50 am in reply to: Can a list of Bookmarks be shown on the side bar (similar to Outline PlugIn)? #17038Yutaka Emura
KeymasterI will think about that in future versions, either as a plug-in or one of the core features. Thanks!
Yutaka Emura
KeymasterIt is easy to make such a plug-in to show the list of bookmarks. Some examples in the Library include source code to use custom bars. We just need to replace the contents with the list of bookmarks. I might add that plug-in future versions.
Thanks!
September 19, 2013 at 6:50 pm in reply to: how to change the default values for "Find in Files" #16742Yutaka Emura
KeymasterHello jicman,
On the right side of the File Types drop-down list box, click the > button to display a menu, and select the Custom. Click the > button again to display the menu again, and the select the Save as Default.
Thanks!
Yutaka Emura
KeymasterPlease see the notes in the Download section of the front page:
http://www.emeditor.com/#download
Download 32-bit portable, How to create 64-bit portable
Thanks!
Yutaka Emura
KeymasterHere is the code:
menu = CreatePopupMenu();
document.selection.StartOfDocument();
while( document.selection.NextBookmark() ) {
n = document.selection.GetActivePointY( eePosLogical );
s = "Line " + n;
menu.Add( s, n );
}
result = menu.Track( 0 );
if( result > 0 ) {
document.selection.SetActivePoint( eePosLogical, 1, result );
}Yutaka Emura
KeymasterSure. Please wait for a while. I will write again when I become available.
Thanks!
Yutaka Emura
KeymasterHello,
You can use QueryStatusByID Method to find whether you are in the Vertical Mode.
http://www.emeditor.com/help/macro/editor/editor_querystatusbyid.htm
To exit from the vertical mode, you can run this command again.
There is no way to change a carret or mouse pointer when you are in the Vertical Mode. I will consider that in the future version. Alternatively, you can add the toolbar button. You are in the Vertical Mode if the button is press.
Thanks!
Yutaka Emura
KeymasterNo, I can’t imagine why you need two trigger for one snippet. If you really want that way, you can copy a snippet to another, and assign a different trigger.
Yutaka Emura
KeymasterHello,
Currently, there is no built-in list for bookmarks. However, you can write a macro to enumerate all bookmarks and create a menu. Thanks!
Yutaka Emura
KeymasterPlease see Command Reference
http://www.emeditor.com/help/cmd/edit/vertical_mode.htm
editor.ExecuteCommandByID(4473);
Yutaka Emura
KeymasterNo, but you can duplicate your snippet and add different triggers.
Yutaka Emura
KeymasterYou will need to use a large file to test this.
Please try this:
file deletedand then you can sort with stable sort, without stable sort, and compare two. I found these differences:
stable sort:
10012 10012
10012 20012
10013 10013
10013 20013
10014 10014
10014 20014
10015 10015
10015 20015non-stable sort:
10012 20012
10012 10012
10013 20013
10013 10013
10014 20014
10014 10014
10015 20015
10015 10015The non-stable sort result may be different from yours since the behavior is undefined.
Thanks!
August 25, 2013 at 2:58 am in reply to: Unable to Search/Replace after Window|New Vertical (or) Horizontal Group #11295Yutaka Emura
KeymasterHello,
Thanks for additional information. I didn’t know you have two monitors, which can be a cause of the issue. I will try to look into the issue with two monitor configuration.
Yutaka Emura
KeymasterHi LTT,
If the Stable Sort is on, in TSV mode, and if the cursor is at the first column,
a b
a a
z z
z yis correct. Only the first column is used to sort, and the second column order is unchanged. If the Stable Sort is off, the second column order can be changed (the behavior is undefined).
Stable Sort is useful if you want to maintain the order of more than one column where there are multiple columns.
Yutaka Emura
KeymasterHi LTT,
You will have to change to Normal mode before you sort, and then change back to TSV mode. Does this answer your question?
August 23, 2013 at 10:19 pm in reply to: matching brackets bug + severe memory leaks (v13.0.4) #11289Yutaka Emura
KeymasterHello JernejL,
Thanks for information. If there was no problem in v12, and the problem exists in v13, it might be because 32-bit version of v13 was compiled with the Visual Studio 2010 compiler while 32-bit of v12 was compiled with the Visual Studio 2008 compiler. (The 64-bit versions of both v12 and 13 are compiled with Visual Studio 2012.) If you could run v12 with the same plug-ins and macros and coulnd’t reproduce the issue, this is probably the cause. I will still try to look into the issue.
Thanks!
Yutaka Emura
KeymasterHello LTT,
This is a correct behavior.
In normal mode, “a a” should come earlier than “a b”, so
a a
a b
z y
z zis correct.
August 23, 2013 at 4:11 am in reply to: Unable to Search/Replace after Window|New Vertical (or) Horizontal Group #11285Yutaka Emura
KeymasterHello,
Thanks for explanation. However, I am not still sure what the issue is. You wrote:
When activating Window#2, pressing Ctrl+F||Ctrl+H opens a dialog (briefly) then it seems to go off the desktop – disappears.
This alone is quite strange. Does the Find (or Replace?) dialog box briefly appears and then disappears?
Can you disable all plug-ins and try again?
Maybe a screencast might be more helpful.
I am sorry for any inconveniences.
Thanks!
August 22, 2013 at 4:18 pm in reply to: matching brackets bug + severe memory leaks (v13.0.4) #11283Yutaka Emura
KeymasterHi JernejL,
Thanks for information. Do you macros include “Mouse activities and keyboard input to other applications”?
Yutaka Emura
KeymasterHi,
I am not sure what you mean by ‘executable”. Can you explain more? If you use backup settings in the Configuration Properties, maybe you might want to disable the backup, and see if this can help.
Thanks!
- AuthorPosts