Forum Replies Created

Viewing 25 posts - 3,426 through 3,450 (of 3,643 total)
  • Author
    Posts
  • in reply to: b2 :: redraw bug if Wrap-by-window ON on startup #4554
    Yutaka Emura
    Keymaster

    I am not sure if this is related, but I fixed the related issue. Please see if Beta 3 resolves this issue. Thanks!

    in reply to: Version 7 Beta 2 – Not yet portable #4553
    Yutaka Emura
    Keymaster

    I cannot reproduce this problem. It looks like Windows system issue. You might want to reboot Windows if the issue still appears.

    in reply to: Extra Encodings and character sets #4535
    Yutaka Emura
    Keymaster

    EUC-KR should be already there. Can you find the other in Tools menu -> Define Encodings?

    in reply to: Version 7 Beta 2 – Not yet portable #4532
    Yutaka Emura
    Keymaster

    I didn’t have a time to fix the absolute/relative path issue before beta 2. I will certainly try to fix this issue by the release version. Thanks!

    in reply to: EmEditor Professional 7.00 beta 1 (through August 14, 2007) #4525
    Yutaka Emura
    Keymaster

    I also downloaded a portable version , select a line by triple-click works there, i think i know how to operate the triple-click
    it indeed failed in my direct-updated version:(

    I guess it was not installed correctly. Please reboot your computer and try again.

    in reply to: EE7B1 Word Complete with VBS issue #4520
    Yutaka Emura
    Keymaster

    “Wscript” is not included in the Highlight list, so it will not be displayed unless “wscript” is used in the document. Those words with blue symbols are from the current document while those with pink symbols are from the Highlight list.

    in reply to: FindBar AND HTMLBar (Disappearance) *CLOSED* #4519
    Yutaka Emura
    Keymaster

    I believe it is a bug. I will try to fix that. Thanks!

    in reply to: Toolbars (Load All) *CLOSED* #4518
    Yutaka Emura
    Keymaster

    I reproduced this issue. I will certainly fix that. Thanks!

    in reply to: Find Toolbar *CLOSED* #4516
    Yutaka Emura
    Keymaster

    I noticed this bug while I was releasing beta 1, but I didn’t have a time to fix this. I will take a look at this soon.

    Yutaka Emura
    Keymaster

    seems that the Project name can not be changed in Projects Plugin…
    hope emeditor to be better and better, it’s my favorite

    Did you try “Save Project As” in the context menu?

    Yutaka Emura
    Keymaster

    Is there any chance that a column editing mode will be available? It’s the feature I’m missing most …

    The column editing, or “Box Selection” is already there. You can select a box selection by mouse while pressing ALT, or by pressing CTRL + SHIFT + F8 to start selecting in box selection mode.

    Yutaka Emura
    Keymaster

    I updated emeditor in my computer from 6 to 7 directly, i found a issue that : “Triple-clicking now selects a whole line.” does not work, need i do some special configure?

    one more issue: seems that “Replace all” only works for use regular exp…

    I cannot reproduce your issue with triple-clicking. Where do you triple-click? Please describe more in details.

    I will take a look at Replace All command.

    Yutaka Emura
    Keymaster

    Two questions:
    1. How i may export settings from installed version to portable?
    2. How i may create / organize ìó favorite files?

    1. Select Import/Export on the Tools menu, and select “Setup a removable drive such as a USB drive and export all settings into INI files.”

    2. You might want to use Projects plug-in included in Version 7.

    in reply to: EmEditor Professional 7.00 beta 1 (through August 14, 2007) #4498
    Yutaka Emura
    Keymaster

    I will add a message for prolonged process. Thanks!

    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.

Viewing 25 posts - 3,426 through 3,450 (of 3,643 total)