Forum Replies Created
- AuthorPosts
Yutaka Emura
KeymasterHello,
You might want to change the “Quote Character” text box on the General tab of configuration properties.
Thanks!
Yutaka Emura
KeymasterHello,
The “Insert New Lines” command is enabled only when you use one or wrap modes. If a line is wrapped, a new line is inserted to the wrapped point at each line.
I hope this makes sense.
Thank you!
January 18, 2013 at 7:19 pm in reply to: Projects Plugin: Adding an existing file using INSERT button to a subtree adds to the parent tree #10773Yutaka Emura
KeymasterHello,
I confirmed this was a bug, and it will be fixed on the next version. Thank you!
January 13, 2013 at 5:49 pm in reply to: Why Comment/Uncomment Functionality Becomes Enabled Only When Line(s) Selected? #10760Yutaka Emura
KeymasterYou are right; the above code was to comment in all cases.
To toggle the comment, it will a little more complicated. To uncomment in all cases, here is the code:
if( document.selection.IsEmpty ){
editor.ExecuteCommandByID(4154);
}
editor.ExecuteCommandByID(4372);Thanks!
Yutaka Emura
KeymasterNo, but you should be able to write a macro to do this.
Thanks!
January 11, 2013 at 5:47 pm in reply to: Why Comment/Uncomment Functionality Becomes Enabled Only When Line(s) Selected? #10753Yutaka Emura
KeymasterHello,
How about a macro like this:
[JavaScript]
if( document.selection.IsEmpty ){
editor.ExecuteCommandByID(4154);
}
editor.ExecuteCommandByID(4371);This macro will comment out the selection if the selections exists, or comment the current line if the selection does not exist.
Thanks!
Yutaka Emura
KeymasterHi,
OK. I will add the “Move to Start of document if not found” feature. Thanks!
Yutaka Emura
KeymasterHello,
How about the Sleep method?
http://www.emeditor.com/help/macro/window/window_sleep.htm
Thanks!
Yutaka Emura
KeymasterPlease clear the “Show or hide the markers toolbar automatically” check box on the Options tab of the Customize Markers dialog box.
Thanks!
January 11, 2013 at 3:27 am in reply to: Why Comment/Uncomment Functionality Becomes Enabled Only When Line(s) Selected? #10746Yutaka Emura
KeymasterHello,
Since these commands are in the “Convert Selection” sub menu of the Edit menu, I wanted to make them work same as other commands in the same sub menu. If I allowed these commands to work when unselected, I would have to allow all other commands to work when unselected.
Thanks for your inputs!
Yutaka Emura
KeymasterHello,
Can you check “Add a shortcut to the Context Menu on Explorer” check box (the More Shortcuts button on the Shortcut tab of the Customize dialog box)?
Thank you!
Yutaka Emura
KeymasterI will take a look at this issue.
Thank you!January 10, 2013 at 1:08 am in reply to: Highlight the currently edited file name in the Projects folder #10737Yutaka Emura
KeymasterHello,
I will consider this in the future version. Thank you!
January 9, 2013 at 10:47 pm in reply to: Projects Plugin: Pop Browse Context Button – When did it supposed to work? #10736Yutaka Emura
KeymasterHello,
The Pop Browse Context Button is enabled only after you click the “Go to Definition” button to jump to the definition of a function.
Thanks!
January 9, 2013 at 10:45 pm in reply to: Is it Possible to select SQL Variables with a Double-click #10735Yutaka Emura
KeymasterHello,
Please add @ to the Treat the following characters as alphanumeric text box on the Edit tab of Customize dialog box.
Thanks!
Yutaka Emura
KeymasterHello,
You might want to try the Snippets plug-in. Please see the “Shell Codes” section of the Help page:
http://www.emeditor.com/help/howto/plugin/plugin_snippets.htm
Using this syntax:
`- appname
stdin1
stdin2
...
`will allow you to edit the parameters to pass to your console application. I hope this helps.
Thanks!
January 7, 2013 at 11:00 pm in reply to: Question: Is there an option to print all the open files in one click? #10727Yutaka Emura
KeymasterHello,
The command reference on EmEditor Help or http://www.emeditor.com/help/cmd/ shows the ID on each command page. Also, the plug-in header http://www.emeditor.com/help/plugin/plugin.h lists the command IDs.
Thank you!
January 7, 2013 at 10:57 pm in reply to: Question: Is there an option to print all the open files in one click? #10726Yutaka Emura
KeymasterHello,
You might want to check the “Wrap by Page when Printing” check box on the Print tab of configuration properties.
Thanks!
January 7, 2013 at 10:55 pm in reply to: F2 / Rename Command Has no Effect in Projects Plugin #10725Yutaka Emura
KeymasterHello,
I will fix this issue by the next version. The Rename command should be enabled only on a simple folder (not a normal file or project or solution folder). But, the current version won’t allow you to rename even a simple folder.
Thank you!
January 5, 2013 at 3:29 am in reply to: Question: Is there an option to print all the open files in one click? #10719Yutaka Emura
KeymasterHello,
This macro should print all open documents directly to the default printer.
[JavaScript]
docs = new Enumerator( editor.Documents );
for( ; !docs.atEnd(); docs.moveNext() ){
doc = docs.item();
doc.Activate();
editor.ExecuteCommandByID(4115);
}Thank you!
Yutaka Emura
KeymasterHello,
You might want to add a space to the “Recognize These Characters” text box (and also “Characters Not Allowed at End” text box) on the Link tab of configuration properties.
Thanks!
Yutaka Emura
KeymasterHello,
This is because ‘#’ is defined as a Line Comment on the Highlight (2) tab of Perl configuration properties. You can remove the ‘#’ from the Line Comment text box. This is the only way to solve the issue.
Thanks!
January 4, 2013 at 4:15 am in reply to: String Values Not Highlighted if Spread Across Lines – SQL Code #10709Yutaka Emura
KeymasterHello,
Please check the “Continue to Next Line” check box on the Highlight (2) tab of configuration properties. Should this be checked by default?
Thanks!
January 4, 2013 at 3:20 am in reply to: Margin Positioning on Printout Disagrees with Page Settings #10708Yutaka Emura
KeymasterHello,
Sorry, you will have to adjust the margin by yourself. I don’t think you need to go back to older version, so it is only once that you will have to do.
Thanks!
Yutaka Emura
KeymasterHello,
On the next major version, I am thinking about adding a dialog that allows you to decide whether you want to add cool new features or keep the same settings.
Thank you!
- AuthorPosts