Forum Replies Created

Viewing 25 posts - 3,601 through 3,625 (of 3,643 total)
  • Author
    Posts
  • in reply to: Again! Replace in Files Problems(v6.00.2) #3935
    Yutaka Emura
    Keymaster

    OK. I will try to improve this interface. Thanks for your opinions!

    in reply to: selecting identifiers with double-click #3932
    Yutaka Emura
    Keymaster

    Currently, there is no way to define word delimiters. I will consider that in future versions.

    in reply to: identify text in brackets #3930
    Yutaka Emura
    Keymaster
    in reply to: space between lines #3929
    Yutaka Emura
    Keymaster

    I believe it is 1/12 of the font height. You cannot change this unit.

    in reply to: identify text in brackets #3926
    Yutaka Emura
    Keymaster

    Search for a regular expression [characters]? You must show an example.

    in reply to: space between lines #3925
    Yutaka Emura
    Keymaster

    It must be an integer value.

    in reply to: disable ALT #3920
    Yutaka Emura
    Keymaster

    No, it isn’t possible.

    in reply to: run macro on-the-fly #3918
    Yutaka Emura
    Keymaster

    No. I might consider that in future versions.

    in reply to: button or keyboard/mouse shortcut to run a macro #3917
    Yutaka Emura
    Keymaster

    You cannot create a button, but you can associate a keyboard shortcut to run a particular macro you created.

    in reply to: select all characters of specific language #3916
    Yutaka Emura
    Keymaster

    I am not sure what language you are looking for, but see: http://www.emeditor.com/help/faq/search/search_reg_exp_ex.htm

    For instance, If you want to highlight only Hiragana, you can use [x{3041}-x{309e}] as a regular expression to search for.

    in reply to: trim empty lines #3915
    Yutaka Emura
    Keymaster

    In the Replace dialog box,

    Find: nnn
    Replace with: nn
    Check Use Escape Sequence

    This will do what you want.

    in reply to: Comment / Uncomment current line without selecting text? #3907
    Yutaka Emura
    Keymaster

    If you have EmEditor Professional, you can write a macro like this (JavaScript):

    var bEmpty = false;
    if( document.selection.IsEmpty ){
    editor.ExecuteCommandByID(4154); // Select line if not selected
    bEmpty = true;
    }
    editor.ExecuteCommandByID(4371); // Comment. Use 4372 for Uncomment.
    if( bEmpty ){
    document.selection.Collapse();
    }

    This macro can comment selected lines if selected, or comment the current line if not selected.

    Then you can customize menus to insert this macro to anywhere you would like.

    in reply to: Saving in Find in Files / Search plugin #3904
    Yutaka Emura
    Keymaster

    Thanks for pointing out!

    1. I reproduced your problem, and it is indeed different. For some reason, s+$ can match the last line of documents and one previous line from blank lines. Please use [[:blank:]]+$ instead, which should give you desired results. [[:blank:]] matches only horizontal white spaces while s can match both horizontal and vertical white spaces. I will take a look into this more closely, and see if I can fix this issue.

    2. Create a simple macro like this (JavaScript):

    document.HighlightTag = true;

    Run this macro after reloading a Find in Files result file.

    3. The search plug-in is somewhat premature since the source code is avaialble, and I am encouraging someone to extend this plug-in with more features. If no one is trying to develope the plug-in, I will consider doing that.

    4. 5. 6. 7. I will consider your requests.

    Thanks again!

    in reply to: Cannot installl M's TeX Helper 2 (32-bit) in EmEditor 6.002 #3902
    Yutaka Emura
    Keymaster

    I added mutual links to these pages. Thanks!

    in reply to: Cannot installl M's TeX Helper 2 (32-bit) in EmEditor 6.002 #3900
    Yutaka Emura
    Keymaster

    I fixed the library description, and added the Japanese package. Thanks!

    in reply to: EmEditor and encodings #3899
    Yutaka Emura
    Keymaster

    I had Save as … (encoding) commands in the main menu at a certain beta version, but some people (including me) found complicated, and even worse, deliberately chose a Save as … (encoding) command where they meant to reload with a correct encoding, and ruined existing files. That is why I hid these commands into the All Commands, but you can easily define your menus.

    Unfortunately, Save as UTF-8 without BOM is not in a command list, but if you had EmEditor Professional, you would be able to write a simple JavaScript macro like this:

    document.UnicodeSignature = false;
    document.Save();

    You would be able to assign this macro to a menu item, and insert the menu item to anywhere you would like.

    Thanks for your nice comments!

    in reply to: codepage autodetection #3896
    Yutaka Emura
    Keymaster

    No problem. For the rest of us, EmEditor already has a feature to auto-detect without displaying the result dialog box:

    First, select Properties for Current Configuration (or All Configurations) on the Tools menu, select File tab, and check Detect All checkbox. Second, select Customize on the Tools menu, and clear Always Show Detect All Result checkbox. Now you can open a file with Auto Detect but without the Detect All Result dialog box.

    in reply to: Cannot installl M's TeX Helper 2 (32-bit) in EmEditor 6.002 #3894
    Yutaka Emura
    Keymaster

    If that is true, I will have to add the Japanese MTex2 to the library, and will note both needed.

    in reply to: codepage autodetection #3891
    Yutaka Emura
    Keymaster

    Can you please send me a few Windows-1251 files or any files that can cause a problem (after zipped as .Zip) as an attachment. Please also write a list explaining which file should be opened as which encoding. My email address is [email protected]. I will need to repro your problem here to fix this issue. Thanks!

    in reply to: codepage autodetection #3889
    Yutaka Emura
    Keymaster

    You can disable the Auto Detect result dialog box:

    Select Customize on the Tools menu, select the File tab, uncheck Always Show Detect All Result check box.

    By default this is checked because the Auto Detection can make mistakes sometimes especially in small files. But if that is not a problem, you can uncheck this option. If you see a mistake, you can always reload the file as a correct encoding by double-clicking the encoding on the status bar.

    in reply to: close tabs with right click #3887
    Yutaka Emura
    Keymaster

    I might consider that. Thanks!

    in reply to: How to receive all update notifications by e-mail #3884
    Yutaka Emura
    Keymaster

    In the Forums, Notify me of any new posts (include full text in message) option is now available!

    in reply to: Search/Replace dialogs resizable #3883
    Yutaka Emura
    Keymaster

    Sure. :-)

    in reply to: % treated as a comment in tex mode. #3881
    Yutaka Emura
    Keymaster

    Yes, I think so. I will try to add a better solution.

    in reply to: change default input language #3879
    Yutaka Emura
    Keymaster

    You can open an IME by a particular configuration, but I don’t think there is any way to change the current input language. If this is an important option you need, I might consider that in future, possibly as a plug-in or a macro.

Viewing 25 posts - 3,601 through 3,625 (of 3,643 total)