Forum Replies Created

Viewing 25 posts - 2,076 through 2,100 (of 3,693 total)
  • Author
    Posts
  • in reply to: Search/Replace : Search All Documents in this Window #8956
    Yutaka Emura
    Keymaster

    In the Find in Files or Replace in Files dialog, you can select “Current File” in the menu displayed when you click the “>” button by the File Types drop-down list.

    in reply to: Search when no text is highlighted #8955
    Yutaka Emura
    Keymaster

    On Version 10, this check box has been deprecated, but there are new options on the menu displayed when you click the “>” button by the Find drop-down list box (in the Find dialog box). In this menu, three options available: “Selected Text”, “Word at Cursor”, and “Custom”. After selecting one of these, you can select “Save as Default” to save this option for the future.

    I hope this helps. Please let me know if you have any questions.

    in reply to: EmEditor cannot generate low-end ALT+NumCodes #8944
    Yutaka Emura
    Keymaster

    Hello CrashNBurn,

    I don’t know about the other application you mentioned, but I didn’t know about ALT + numbers behavior. Both Windows Notepad and EmEditor insert the same symbols. I think that is the Windows behavior. Those are Unicode characters and that is why they can’t be saved as ASCII. You can save them as a Unicode file. The other application assigns ALT+0x as inserting control characters ( Advanced > Insert Special Character. I hope this helps.

    Thank you!

    in reply to: Encoding Display #8943
    Yutaka Emura
    Keymaster

    Hello CrashNBurn,

    You can find current encoding on the status bar.

    Also, you can have EmEditor display the return method (CR, LF, or CR+LF) if you customize the status bar (On the Customize dialog > Status > Return Method).

    Please let me know if you have further questions.

    Thank you!

    in reply to: Editing HTML/PHP Files #8942
    Yutaka Emura
    Keymaster

    Hello CrashNBurn,

    You might want to try Zen-coding plug-in/macros.
    http://www.emeditor.com/modules/feature1/rewrite/tc_37.html

    In Zen-coding, the Balance Tag action selects text between and .

    Key-word completion can be accomplished using the WordComplete plug-in, which is installed by default.

    Please let me know if you have further questions.

    Thank you!

    in reply to: new characters to "hightlight matching brackets"? #8934
    Yutaka Emura
    Keymaster

    Hello tungwaiyip,

    I am sorry, but you can’t add new characters for matching brackets. I might consider that feature in the future.
    Thank you,

    in reply to: Insert Long Date #8932
    Yutaka Emura
    Keymaster

    Hello pja,

    You can write a macro to insert any date format you would like:

    d=new Date(); document.write(d.toLocaleString());

    This is a javascript macro.

    in reply to: question about regular expression capabilities #8928
    Yutaka Emura
    Keymaster

    That’s an excellent solution. Thnaks jibz!

    in reply to: question about regular expression capabilities #8923
    Yutaka Emura
    Keymaster

    Hello hydra,

    In the Replace dialog box, you can use replace

    =(w)(ww)

    with

    =21

    and check Use Regular Expressions.

    Please let me know if you have further questions.
    Thank you!

    in reply to: Bug restoring window size #8920
    Yutaka Emura
    Keymaster

    Hi owilsky

    If the “Restore Tabbed Window Position” is checked, EmEditor should remember the window size when tabs are enabled..

    When tabs are not enabled, the only way to remember the window size is to use the automatic load/save workspace feature.

    in reply to: Use Tab for WordComplete instead of Enter #8914
    Yutaka Emura
    Keymaster

    Hello blackhawk,

    You can change the keyboard settings from the plug-in Properties. On the Keyboard tab, you can select Complete command which is assigned to the ENTER key by default.

    in reply to: Bug restoring window size #8912
    Yutaka Emura
    Keymaster

    Hello,

    If the tabs are enabled, the window size is saved because the Restore Tabbed Window Position is checked. If the tabs are not enabled, after you maximize the window, you can go to this dialog, and then click Save Current Window Position to save the maximized window position and size.

    Please let me know if you have further questions. Thanks!

    in reply to: Wordcomplete / Snippet Confusion #8911
    Yutaka Emura
    Keymaster

    Hello blackhawk,

    The Projects plug-in has the intellisense-like functionality. I hope you will like that.

    Thanks!

    in reply to: Wordcomplete / Snippet Confusion #8908
    Yutaka Emura
    Keymaster

    Hello blackhawk,

    Thanks for your inputs. I will consider the improvements in future versions.

    in reply to: rhtml syntax coloring and the append symbol ( #8905
    Yutaka Emura
    Keymaster

    Hello Dreven,

    I know all about the features you are talking about.
    Thanks for explaining!

    in reply to: rhtml syntax coloring and the append symbol ( #8903
    Yutaka Emura
    Keymaster

    Hello Dreven,

    Thanks for your comments about EmEditor.

    As for rhtml/ruby append symbol (<<), maybe you can post a sample code where the problem happens, or you can email me a file at [email protected], and I will make sure to consider the issue in future versions.

    You can find additional themes in the library http://www.emeditor.com/modules/mydownloads/viewcat.php?cid=13

    I will also try to modify the default themes in the future.

    I might also consider the missing feature where you can select a word to highlight the word, and every other instance of it is highlighted.

    And I will also try to improve the keyboard search ability.

    Thanks!

    in reply to: Bug with show marks #8901
    Yutaka Emura
    Keymaster

    Hello owilsky,

    You will need to load the Config object into the memory before you can modify and save it. Please rewrite like this:

    #title = "Marks" 
    #tooltip = "Toggle Marks ON/OFF"

    editor.ExecuteCommandByID(4370); //EEID_VIEW_MARKS (4370)
    cfg = document.Config;
    if(cfg.Mark.ShowReturns) cfg.Mark.ShowSpaces = true;
    else cfg.Mark.ShowSpaces = false;

    cfg.Save();

    Yutaka Emura
    Keymaster

    Hi zhouzh2,

    OK. Thanks for your explanation. I might consider that in future versions.

    in reply to: display bug #8897
    Yutaka Emura
    Keymaster

    Hello cx138,

    I already realized this issue, and it should be fixed on the next minor version.
    Thanks!

    Yutaka Emura
    Keymaster

    Hello zhouzh2,

    Sorry, exactly what is the issue?
    Thanks!

    in reply to: Bug with show marks #8891
    Yutaka Emura
    Keymaster

    Hi owilsky,

    The Marks command toggles only new line, EOF and tab marks, and does not include spaces. This is the specification. On v10, you can use independent commands on the View menu to toggle each mark.

    in reply to: Posts since last visit / mark forum read? #8888
    Yutaka Emura
    Keymaster

    Hello Jibz,

    I have never used “read mark” features, but you might want to use notification messages. Please see:
    http://www.emeditor.com/modules/newbb/viewtopic.php?topic_id=5&forum=1

    Also, you can see the list of newest messages in the bottom of the home page when you are logged in.

    Yutaka Emura
    Keymaster

    Hello Jibz,

    I reproduce the issue now by the way you described.
    I will look into this issue.
    Thanks!

    Yutaka Emura
    Keymaster

    Hello Jibz,

    I am sorry but I couldn’t reproduce your issue. Did you add d+ as a regular expression at the bottom of the list of highlight strings in the Highlight (1) tab of C++ configuration properties?

    in reply to: Automatic: Erase Find Highlight #8883
    Yutaka Emura
    Keymaster

    Hello Jibz,

    I might add that feature in future versions of EmEditor.
    Thanks for your comments!

Viewing 25 posts - 2,076 through 2,100 (of 3,693 total)