Forum Replies Created

Viewing 25 posts - 3,476 through 3,500 (of 3,679 total)
  • Author
    Posts
  • in reply to: EmEditor Professional 7 Will be released soon #4495
    Yutaka Emura
    Keymaster

    It will be announced in the beta forum: http://www.emeditor.com/modules/newbb/viewforum.php?forum=12

    in reply to: EmEditor Professional 7 Will be released soon #4493
    Yutaka Emura
    Keymaster

    I will probably release the beta 1 version tomorrow. :-)

    in reply to: Move line up or down ? #4491
    Yutaka Emura
    Keymaster

    You can use JavaScript macros:

    Move Up:


    editor.ExecuteCommandByID(4193);
    editor.ExecuteCommandByID(4269);
    document.selection.Paste(eeCopyUnicode);
    editor.ExecuteCommandByID(4269);

    Move Down:


    editor.ExecuteCommandByID(4193);
    editor.ExecuteCommandByID(4268);
    document.selection.Paste(eeCopyUnicode);
    editor.ExecuteCommandByID(4269);

    and you can assign these macros to any key shortcuts.

    in reply to: Copy complete line without having to mark line #4489
    Yutaka Emura
    Keymaster

    You can use the following macro (JavaScript):


    if( document.selection.IsEmpty ){
    editor.ExecuteCommandByID(4192);
    }
    else {
    document.selection.Copy(eeCopyUnicode);
    }

    and you can assign this macro as CTRL+INS and CTRL+C.

    in reply to: EmEditor Professional 7 Will be released soon #4485
    Yutaka Emura
    Keymaster

    I can probably release beta versions in a few weeks. I apologize if the term “soon” was not specific enough and confusing. I can only say that the new version will be released when it becomes stable enough. I don’t want to release versions that might contain too many bugs. I work very hard, day and night, to finalize Version 7. I committed to make it one of the greatest updates in the EmEditor history! Thank you very much for your support!

    in reply to: Virtual space #4471
    Yutaka Emura
    Keymaster

    It will be included in Version 7. :-)

    in reply to: Add a context menu to explorer? #4441
    Yutaka Emura
    Keymaster

    It is under the Tools menu > Customize. It is available on EmEditor Professional or Standard, but not on EmEditor Free.

    in reply to: Add a context menu to explorer? #4438
    Yutaka Emura
    Keymaster

    1. There is “EmEditor” menu in the Explorer context menu. If not, make sure “Add a shortcut to the Context Menu on Explorer” is checked in the Customize dialog > Shortcut tab > More Shortcuts button.

    2. I will soon release the Projects plug-in, so you can add your favorite files to a tree!

    in reply to: alias $(Path) dont correct work #4436
    Yutaka Emura
    Keymaster

    Did you try “$(Path)” ? Use double quotation marks “” to surround $(Path).

    Yutaka Emura
    Keymaster

    You might want to go to Explorer > Tools menu > Folder Options > File Types tab and look for “(NONE) URL:HyperText Transfer Protocol”. I don’t recommend you change this setting manually, but I think this is what EmEditor (and other applications) typically uses to select a browser to open URLs with. I receive many claims with the similar FireFox issues. Do you use the latest version of FireFox installed properly on your system?

    in reply to: how to do this with regex #4431
    Yutaka Emura
    Keymaster

    You will need to use “^\” instead of “^”. Regular Expressions expects , and JavaScript also escapes backslashes, so it needs to be \. If this does not solve your other questions, please let me know. Thanks.

    in reply to: How to higlight $(dollar) on doubleclick in PHP-files? #4430
    Yutaka Emura
    Keymaster

    Currently, you cannot change this behavior. You will need to move the mouse to the left to include $ while pressing the mouse button.

    Yutaka Emura
    Keymaster

    You can change the default browser from the Windows Start menu > Set Program Access and Defaults.

    in reply to: regex bug #4407
    Yutaka Emura
    Keymaster

    Not a bug. You must escape back slash as “” in JavaScript.

    in reply to: Outline plugin flashes text while typing #4391
    Yutaka Emura
    Keymaster

    As I replied to the other thread, The next version (7) will improve how EmEditor displays text and prevent this flickering issue.

    in reply to: Reloading a file doesn't reconsider that files encoding #4389
    Yutaka Emura
    Keymaster

    This is correct behavior by design. You will explicitly need to specify the new encoding, or you can select “File” > “Reload” > “Detect All” or any other encoding.

    in reply to: Match Tags? #4381
    Yutaka Emura
    Keymaster

    You or I could write a macro to find a matching tag — for instance, if the cursor is on “<table", then the macro should find "</table", and go to that position. Is this something you would like to do?

    Yutaka Emura
    Keymaster

    I am not completely sure what you want to do. Do you want to add “PUNCH5” at Line 278 of every file in a certain folder?

    in reply to: General Questions #4379
    Yutaka Emura
    Keymaster

    1. To change the thickness of the cursor, select Accessibility Options in Control Panel, select the Display tab, and adjust the Width under the Cursor Options. This option is applicable in Windows XP/2003/Vista. In case of Windows 2000, the cursor thickness is fixed and cannot be changed.

    2. That might require more CPU power, so I am not very positive about this direction…

    3. I am not quite sure how the cursor should move. Can you please describe in more details? Thanks!

    in reply to: Unicode Input #4371
    Yutaka Emura
    Keymaster

    It is probably easy to write a plug-in to insert a unicode character. I might write that plug-in. For now, you can use Character Map included in Windows to insert a character. Thanks!

    in reply to: Bug with resizing search/replace dialog #4362
    Yutaka Emura
    Keymaster

    I reproduced your issue. Thanks for reporting that.
    It will be fixed in the next version. Thanks you.

    in reply to: Support for multi-key bindings #4359
    Yutaka Emura
    Keymaster

    I will think about that. Thanks!

    in reply to: problem to select column using alt-drag #4358
    Yutaka Emura
    Keymaster

    I will look into this. Thanks!

    in reply to: Bug with resizing search/replace dialog #4357
    Yutaka Emura
    Keymaster

    They shouldn’t resize. Have you had any other versions installed before you installed 6.00.4? Do you use English version without any language pack? Can you please let me know the timestamp of emedloc.dll file located in Program FilesEmEditormui1033 folder and your timezone? Thanks!

    Yutaka Emura
    Keymaster

    You can reset a specific configuration or all configurations of a specific tab of Properties. Go to the Display tab of Properties, click Reset button, and then select “Reset to Default” to reset to default settings.

Viewing 25 posts - 3,476 through 3,500 (of 3,679 total)