Forum Replies Created

Viewing 25 posts - 1,551 through 1,575 (of 3,679 total)
  • Author
    Posts
  • in reply to: middle click => insert newline #10945
    Yutaka Emura
    Keymaster

    Hello,

    Unfortunately, there are no features that allow you to customize mouse buttons. I will think about that in future versions. Thanks!

    in reply to: [Close Group] command can not close the last group. #10942
    Yutaka Emura
    Keymaster

    I see. This will be fixed on the next version. Thanks!

    in reply to: The close status of the Find toolbar #10934
    Yutaka Emura
    Keymaster

    Hello,

    I reproduce this issue, and it will be fixed on the next version. Thanks!

    in reply to: [Close Group] command can not close the last group. #10933
    Yutaka Emura
    Keymaster

    I couldn’t reproduce this issue. Can you write more detailed procedure to reproduce the issue?

    in reply to: External Tools: new argument to use clipboard content #10925
    Yutaka Emura
    Keymaster

    Yes. This will be added on v13.

    Thanks!

    in reply to: Macro s & r in block column selection #10924
    Yutaka Emura
    Keymaster

    Hello Stefan,

    I am sincerely sorry for my delayed responses, but I am spending much of time these days to develop a new major version of EmEditor.

    Currently, this is the specification because macros can’t paste text as a box format. The only way to work around this is using the Clipboard like this:


    sel = document.selection.text;
    Lines = sel.split("rn");
    out = "";

    for(L=0,E=Lines.length; L<E; L++){
    line = Lines[L];
    out += line.replace("i", "X") + "rn";
    }

    alert(out);

    clipboardData.setData("BoxText", out);
    document.selection.Paste(eeCopyUnicode);

    I hope this helps.
    Thanks!

    in reply to: Add ${EE_PATH} and ${EE_Drive} parameter #10909
    Yutaka Emura
    Keymaster

    Hello,

    I see. I understand. I will think about that.

    To work around this, if you use a macro or Snippet macro, you can use

    editor.FullName;

    to get the full path of EmEditor.exe.

    Thanks!

    in reply to: Add ${EE_PATH} and ${EE_Drive} parameter #10907
    Yutaka Emura
    Keymaster

    Hello Stefan,

    ${EE_Drive} is not available, but ${EE_PATH} is $(Dir). Can you try that?

    Thanks!

    Yutaka Emura
    Keymaster

    Hello ArthurZ,

    I know it is not perfect, but at least it restore the EmEditor window size. I will try to see if I can address the issue.

    Thanks for your inputs!

    in reply to: Vertical Selection Editing bug #10882
    Yutaka Emura
    Keymaster

    I am not sure what the issue is, but if you use a Fixed-width font, you might be happier.

    Thanks!

    in reply to: A very strange thing in dropping a file… #10878
    Yutaka Emura
    Keymaster

    Thanks for observation. It is possible the Projects plug-in can be something to do with the “disallowed-drop”. I will look into this issue.

    Thanks!

    in reply to: A very strange thing in dropping a file… #10875
    Yutaka Emura
    Keymaster

    Hello,

    The only option we have is “Enable Text Drag and Drop” check box on the Mouse tab of the Customize dialog box, but this is not related to the issue you described. Plug-ins can have something to do with this issue, so can you disable plug-ins if you have installed plug-ins other than default installed plug-ins?

    If you still have issue, I would restart Windows. If you still have the issue after restarting Windows, can you export all your settings to .REG files from Tools menu > Import and Export > Export all settings into a registry, and then uninstall EmEditor, make sure all files in the C:Program FilesEmEditor are deleted, restart Windows, and then install the newest version of EmEditor? Can you also please zip the reg files and email me at [email protected]? I would like to reproduce the issue here.

    Thank you!

    in reply to: Wait for key press, get Key #10872
    Yutaka Emura
    Keymaster

    Hi Stefan,

    It is not possible to wait for a particular key while running a macro. This is because macros do not run asynchronously. This is limitation of macros.

    What I mean by using Snippets is using a Keyboard shortcut for each snippet.

    Thanks!

    in reply to: Customize Menu: New Command Category "Load Macro" #10866
    Yutaka Emura
    Keymaster

    Hello,

    It is just the way EmEditor was designed. If you need to add a macro to a menu, you will first include the macro to My Macros, and then add the macro to the menu. Adding another command like “Select Macro from folder…” item will cause a lot to change, actually. It is hard to describe, but please understand that it will add a lot of code to the existing code base.

    Thanks!

    in reply to: Allow Env Vars for "Save Backups to Backup Folder" #10865
    Yutaka Emura
    Keymaster

    Hello Stefan,

    Environment variables are not supported for the Backup folder. If this is something you desire, I will add this feature in future versions. By the way, this is not a plug-in feature, but rather an EmEditor core feature.

    Thanks!

    in reply to: Customize Menu: New Command Category "Load Macro" #10862
    Yutaka Emura
    Keymaster

    Hi Stefan,

    You can organize My Macros contents from the Customize Macros dialog – My Macros tab. It should be easy enough to work around.

    I need to keep all compatibilities between old and new versions, and I don’t want to make EmEditor too complicated because it will end up being too bloated.

    I hope you understand.

    Thanks!

    in reply to: Wait for key press, get Key #10861
    Yutaka Emura
    Keymaster

    Hi Stefan,

    An easy way is to utilize our Snippets plug-in. Can you try using the Snippets plug-in? Lots of information can be viewed at http://www.emeditor.com/help/howto/plugin/plugin_snippets.htm

    Thanks!

    Yutaka Emura
    Keymaster

    I see. So it doesn’t have to be “test.test.test.com”, right?

    e is not defined, so undefined escape sequences should not be used. Please use “e” instead.

    Thanks!

    Yutaka Emura
    Keymaster

    Hi ArthurZ,

    I am sorry I didn’t understand your question.
    Can you please try to rewrite with a simple sample, or you can email me at [email protected] with samples.

    Thanks!

    in reply to: Irregularities with replacing (.jsee macro) #10851
    Yutaka Emura
    Keymaster

    Hello Salabim,

    This is an expected result. Since you are trying to match from a new line character (n, 1) to the next n (3), the next search will begin after the second n (3). For instance, after “nlern” is matched, the following search will begin at “lers”.

    If you need to search every line, you will need to remove either 1 or 3, or you might want to use lookahead or lookbehind search. Please see

    http://www.emeditor.com/help/howto/search/search_regexp_syntax.htm

    for details about the syntax of regular expressions.

    I hope this helps you understand.

    Thanks!

    in reply to: Stop highlight "&" #10848
    Yutaka Emura
    Keymaster

    Hello,

    The “&” highlight is probably one of highlight list you can define at the Highlight (1) tab of HTML configuration properties.

    Thanks!

    in reply to: Ask for help regarding command line #10843
    Yutaka Emura
    Keymaster

    Hello David,

    The command line is not for this kind of task. Please use EmEditor user interface, or an EmEditor macro to do this task. You can call an EmEditor macro from a command line, too.

    Thanks!

    in reply to: How to Un-Zoom the View? #10840
    Yutaka Emura
    Keymaster

    Hello,

    CTRL + Mouse Wheel only changes the font size. Please adjust the font size from the View menu – Fonts, and you can go back to normal size.

    Thanks!

    Yutaka Emura
    Keymaster

    Hello LTT,

    Currently, MaxClipboardHistory is not actually used to specify the maximum number, but it only turns on or off the Clipboard history and also turns on or off monitoring the external application.

    The maximum number of the clipboard history is always 32, or 33 if you count the current actual clipboard contents in addition to 32 items in the history.

    Thanks!

    in reply to: Reloading the file will clear the bookmarks. #10836
    Yutaka Emura
    Keymaster

    No, we only fixed critical bugs this time. I will consider this in the next major version.

    Thanks!

Viewing 25 posts - 1,551 through 1,575 (of 3,679 total)