Forum Replies Created

Viewing 25 posts - 3,476 through 3,500 (of 3,643 total)
  • Author
    Posts
  • in reply to: Confused drive letters and path from the command line #4326
    Yutaka Emura
    Keymaster

    I couldn’t reproduce the second case. When you move to another drive, is the current directory the root directory of the drive?

    in reply to: Confused drive letters and path from the command line #4323
    Yutaka Emura
    Keymaster

    Thanks for your report! You are right! I just fixed that in my PC. The next release will include this fix. Meanwhile, use double-quotation marks to specify a file to open. For instance, use:

    emeditor “file”

    instead of

    emeditor file

    in reply to: macro to toggle line numbers on and off #4319
    Yutaka Emura
    Keymaster

    I am considering to add configuration properties to macro. Thanks!

    in reply to: undo bug #4316
    Yutaka Emura
    Keymaster

    I don’t consider the selection undo issue is a bug. It is just how EmEditor is designed. If EmEditor needs to restore selections, it will need more memory space to save that information. If that is all right, however, I might consider it in future versions.

    in reply to: greek language #4315
    Yutaka Emura
    Keymaster

    Of course, Backspace will delete the left character.

    I also looked at the other thread, and I will comment to the other thread.

    in reply to: Auto reload files #4312
    Yutaka Emura
    Keymaster

    Did you check “Changed by Another Program” drop-down list box in the File tab of Properties. This option can be set for each configuration.

    in reply to: report a problem #4311
    Yutaka Emura
    Keymaster

    You should not be able to resize Find or Replace dialog box in 6.00.x. That feature is reserved for Version 7. I guess you installed Version 7 alpha once, and that resource still remains in your installation folder. You might want to try uninstall the current version, make sure your installation folder (Program FilesEmEditor) is empty, and then install 6.00.4.

    in reply to: Return method is not shown now #4307
    Yutaka Emura
    Keymaster

    This bug has been fixed on my PC. It will be include in the next release. Thanks!

    in reply to: greek language #4306
    Yutaka Emura
    Keymaster

    This has been fixed on my PC, and it will be included in the next release – probably Version 7. You will need to remove “Delete Left Character” key assignment, currently assigned to “Back” key, manually from the Keyboard tab of all Configuration Properties in order to make this work. Thanks!

    in reply to: greek language #4305
    Yutaka Emura
    Keymaster

    I reproduced the issue. I am now investigating the issue. Thanks for letting me know. I guess I missed your report, and I am very sorry for that. I will let you know when it is fixed again.

    in reply to: cut whole lines and paste them to a new file? #4295
    Yutaka Emura
    Keymaster

    I wrote similar macros before:

    Macro that extracts lines that contain the specified string
    http://www.emeditor.com/modules/mydownloads/singlefile.php?cid=8&lid=169

    Macro that extracts lines that do not contain the specified string
    http://www.emeditor.com/modules/mydownloads/singlefile.php?cid=8&lid=170

    You can run these macros, or you can combine these macros and run once.

    in reply to: Aspell plugin for emeditor? #4294
    Yutaka Emura
    Keymaster
    in reply to: Making EmEditor USB stick friendly? #4286
    Yutaka Emura
    Keymaster

    I know it is a good idea, but it won’t happen in a few months. I will keep remembering this issue. Thanks!

    in reply to: [^xyz] always matches newline? #4285
    Yutaka Emura
    Keymaster

    Actually, it used to be Period in some previous versions. Then I renamed to “Regular Expressions” because Regular Expresions include Period. Someone reported this preference because it is not only Period that can match new lines.

    in reply to: Hyperlinks in EmEditor #4284
    Yutaka Emura
    Keymaster

    Use this macro:

    document.HighlightTag = true;

    when you want to activate the highlight after you reopen the Find in Files result.

    in reply to: Number of files increment. #4276
    Yutaka Emura
    Keymaster

    What did you select on the Extra Keyboard Shortcut dropdown list in the History tab of the Customize dialog box? It doesn’t go to 11, 12, 13,… because a digit or letter merely represents shortcut key to access each item. There have been many questions about how these shortcuts are represented, so now there are three options:

    – No shortcut
    – All zeros
    – Add alphabets

    Did you want more choices? :-)

    in reply to: Search bug/enhancement #4275
    Yutaka Emura
    Keymaster

    That is true. I might consider that in future version.

    in reply to: Selecting all matches as MSWord can do? #4272
    Yutaka Emura
    Keymaster

    I am not sure what you really want to do. Please explain.

    in reply to: I need Auto Complete #4266
    Yutaka Emura
    Keymaster

    Some eac files are included in the plug-in package, and they should be self-explanatory.

    This is an example:


    #T=for
    for ( !^; ^; )
    {

    }

    ! specifies where the new cursor position is.
    ^ is an escape character.
    # is a comment or #T is the keyword that trigers auto complete.

    in reply to: EmEditor Professional 6.00.4 RC #4259
    Yutaka Emura
    Keymaster

    I am sincerely sorry that was missed. And it will be missed in the release version of 6.00.4 because it is already fixed. I will make sure it will be included in the next minor version (that is after 6.00.4). Thank you for reminding me.

    in reply to: tagger (html auto-tagging plugin) #4257
    Yutaka Emura
    Keymaster

    Try this:

    document.selection.Text = "<b>" + document.selection.Text + "</b>";

    You can save this one line macro as something like “bold.jsee”. Then while this file is still active, click “Select This” on the Macros menu. When you open an HTML file, select text and click “Run Macro” on the toolbar or press F4. If you have multiple macros, you can assign keyboard shortcut from Keyboard Map on the Help menu.

    in reply to: tagger (html auto-tagging plugin) #4254
    Yutaka Emura
    Keymaster

    I reproduced this issue. It works fine when “No Wrap” is selected for “Wrap by” (you can select on the toolbar, or on the General tab of the Properties for Current Configuration). However, I am not the author of these plug-ins, and so I cannot fix them.

    You can probably do the same thing by writing a macro, and you can assign the macro to any keyboard shortcut.

    in reply to: why these dont work? #4251
    Yutaka Emura
    Keymaster

    1) and 4) Please see the complete explanation of the regular expressions at:

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

    http://www.emeditor.com/help/faq/search/search_reg_exp_ex.htm

    If you still have questions, you can post your questions at Regular Expressions forum if it is related to regular expression search.

    2) You can replace “. ” with “, “.

    3) eeFindReplaceOnlyWord – That is correct.

    in reply to: How i can change colors for any Syntax Files? #4250
    Yutaka Emura
    Keymaster

    You can change these colors frm the Display tab of the Configuration Properties although some item names are different. Please play around with the Properties, and you can figure these out.

    in reply to: why these dont work? #4247
    Yutaka Emura
    Keymaster

    [βγδζθκλμνξπρστφχψς]σ[βγδζθκλμνξπρστφχψς]

    should be

    ([βγδζθκλμνξπρστφχψς])σ([βγδζθκλμνξπρστφχψς])

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