Forum Replies Created

Viewing 25 posts - 51 through 75 (of 77 total)
  • Author
    Posts
  • in reply to: macro combining find and sendkeys #7320
    zhouzh2
    Participant

    No need for macros.
    Press CTRL + H
    find: “n(:.*)”
    replace with : “1”
    check use regular expressions
    replace all
    Done

    in reply to: How can I localize file in explorer tree #7312
    zhouzh2
    Participant

    I think he wants a button to make the current opened file be selected in the explorer plug-in

    in reply to: EmEditor Professional 9.00 alpha #7154
    zhouzh2
    Participant

    WOW! So finally dynamic snippet is coming :-)
    I have just played around Emeditor 9 alpha for a while, it’s pretty stable, but it seems the “Automatically Show the Candidate List as Typing” function of WordComplete plug-in is not working? the candidate list will never show up only if i let it to do so.
    One more suggestion for the new awesome Snippets plug-in: is it possible to mark the candidates with 1-9? therefore user can select them and insert them with one button.
    Again, GREAT JOB! Emeditor is walking toward “perfect”.

    P.S. Can I use the new Snippets plug-in in 8.04?

    in reply to: smart tabs (delete tabwidth spaces when pressing backspace) #6971
    zhouzh2
    Participant

    Hi,
    Emeditor has “tabs to spaces” function.
    just for fun, I write a macro for a smart del feature:

    //SmartTab4python by zhouzh2
    document.selection.CharLeft(true,1);
    document.selection.CharLeft(true,1);
    document.selection.CharLeft(true,1);
    document.selection.CharLeft(true,1);
    if (document.selection.Text == " ")
    {
    document.selection.Delete(1);
    }
    else
    {
    document.selection.CharRight(false,1);
    document.selection.DeleteLeft(1);
    }

    assign “backspace” to this macro in Python configuration will do what you want.
    note this macro works only when a tab means 4 spaces. If not, you can change this macro accordingly.
    P.S. It works a little slow, so i think a plug-in should be a better choose.

    in reply to: feature request: autoclose brackets, commas, etc #6970
    zhouzh2
    Participant

    Hi,
    I write a simple macro for this purpose

    do c u m e n t . w r i t e   (   "  "  " "   ) ; 
    s h e l l . S e n d K e y s ( " { L E F T } " ) ;

    assign this macro to the key “{SHIFT}+'”.
    In this way, if you enter “””, you will get “”””, with cursor between ” and “.
    Downside is a macro runs slower than a plug-in, and when recording macros, running this macro will stop the recording.

    in reply to: Text Editor Speed Comparison #6923
    zhouzh2
    Participant

    Hi,
    I love EmEditor, and I do think it’s the best text editor so far. And I’m happy to see EmEditor wins this speed test.
    However, in my own experience, Notepad launchs much faster than EmEditor, especially when you have heavy tasks running in background. For example, try launch both EmEditor and Notepad when the system is copying large files.

    Also, I agree Emeditor’s large file support is awesome, but it can’t really beat Ultraedit in this aspect. U is disk base,which means it opens any file in seconds. It uses a lot of time to open large file because it tries to make a copy of the original file to protect that file. And this protection can be turned off.

    Anyway, I enjoy using Emeditor, because of it combines function and speed so well,extremely customizable, under a clean interface.
    Your customer service is also the best in the world BTW:-D

    in reply to: Search and Replace multiple lines #6687
    zhouzh2
    Participant

    It’s already there :-) Try resize the search and replace dialogue box.

    in reply to: Just a small issue… #6602
    zhouzh2
    Participant

    O.K. see here.
    bug

    Edit: Just upgraded to RC5 and didn’t have this issure any more.

    in reply to: Just a small issue… #6597
    zhouzh2
    Participant

    8.0RC4

    in reply to: Is it possible to config Outline Plug-in to act like this? #6587
    zhouzh2
    Participant

    Yes, the lastest RC4 works. Beautifully done!
    Just one more question: why “blank” works but regex “^n” doesn’t? IMHO they should be the same.

    in reply to: Color theme: MinimalZen #6540
    zhouzh2
    Participant

    Check out “DejaVu” :-)

    in reply to: EmEditor Professional 8.00 beta 9 #6430
    zhouzh2
    Participant

    Replace All including new lines or regular expressions optimized (became much faster!).

    That was quite amazing! The best editor keep getting better.

    in reply to: EmEditor Professional 8.00 beta 8 #6429
    zhouzh2
    Participant

    I just watched the “Grab Text” feature video. This is a real time-saver I must say! However, when I tried to use it, nothing happened when I press “crtl+alt+x”, also I can’t find this “Grab Text” command in both “tools”-“All Command” and “Keyboard map”. Is there anything that I missd?
    Using EmEditor Professional 8.00 beta 9

    in reply to: Add a few more items to make EmEditor pure genius #6377
    zhouzh2
    Participant

    A few items that can be added to the EmEditor’s future version:
    1. An undo tree:
    type “abc”, del “c”, type “b”,then you get “abb”. Undo once will get “ab”, again to get “abc”. But an undo tree will allows you to choose either return to “abc” or to “a”. This would be helpful in some special circumstances IMHO.

    2. display special characters when they are highlighted.
    display special characters when they are highlighted, even if they are not set to be displayed. This could be an option. It would help if you want to test regular expressions. Emeditor’s find now only highlight all text characters, would be better if “n”, “t”s also highlighted (all of them highlighted, not one only once) with their symbols also displayed.

    in reply to: EmEditor Professional 8.00 beta 5 #6368
    zhouzh2
    Participant
    in reply to: EmEditor Professional 8.00 beta 2 #6281
    zhouzh2
    Participant

    Email sent, please check.

    in reply to: EmEditor Professional 8.00 beta 2 #6268
    zhouzh2
    Participant

    A small bug:
    If the lines contain some double-byte characters and line length is different, use box selection to edit the end of these lines:

    【【【【【【【【【【【【【【【【【【【【
    【【【【
    【【
    【【【【【【【【【【【【【【【【【【【【【【【【【【【
    【【

    Now I want to append “//” to these lines, you may find the “//”s don’t appear to be at one column.

    in reply to: EmEditor Professional 8.00 beta 2 #6265
    zhouzh2
    Participant

    Do you have any plan to make the snippet plug-in more powerful (like TextMate’s bundle system):

    Type

    for[TAB] 

    get:

    for (unsigned int i = 0; i < count; i ++) 
    {
    ^
    }

    The first Tab stays on “unsigned int”, a second Tab stays on “i”, if you change “i” to “idx”, then the following “i”s changes to “idx” too. A third Tab go to “count”, a fourth tab let the cursor goes to “^”‘s position and close snippet mode therefore you can insert Tab normally.

    I just tested TextMate on my friend’s computer and this so-called “bundle” is quite amazing.

    in reply to: save position from last time? #6218
    zhouzh2
    Participant

    “Tools”-“Customize”-“File”-“Save Cursor Position and Bookmarks”

    in reply to: Suggestioin on box-editing #6212
    zhouzh2
    Participant

    backspace should delete one character, not all the whole changes made

    +1

    in reply to: Color theme: MinimalZen #6209
    zhouzh2
    Participant

    Fabulous! Really good theme! Although I prefer “Blackboard” than “Minimal” :-)

    in reply to: Quotes Matching #6194
    zhouzh2
    Participant

    Thanks for your reply.
    Please check the strings below:

    Button2, -773844987="Show popup menu, "Browser Bookmarks Menu", , , "Panel Bookmarks""

    I use Emeditor the edit Opera’s ini files.
    When you check Single Quotation Marks and Double Quotation Marks , Emeditor highlighted the strings in this style:

    Button2, -773844987="Show popup menu, "Browser Bookmarks Menu", , , "Panel Bookmarks""

    However, the correct style should be:

    Button2, -773844987="Show popup menu, "Browser Bookmarks Menu", , , "Panel Bookmarks""

    Besides that, Quotation Marks can’t indicate the last quote pairs the first quote. So in my opinion, Quotes Matching in the same way of Parentheses/Brackets Matching would be useful.

    in reply to: Need help in useing EmEditor macros #6193
    zhouzh2
    Participant

    I am useing 7.5 alpha 9, however the previous version alpha 8 has the same issue in my computer. Do these macros need any runtimes that is not installed on my computer?

    in reply to: EmEditor Professional 7.50 alpha 9 #6171
    zhouzh2
    Participant

    I think you are right.
    Alpha 9 can’t edit “Null Column”.
    In fact, you can select “Null Column”, but after selection, you can’t input anything. While Alpha 8 can.

    in reply to: How do I Extract Text Between Two Fields from many files #6132
    zhouzh2
    Participant

    Since this can be done easily by using AutoIt3, I’m sure using marco in Emeditor can do the same thing.

Viewing 25 posts - 51 through 75 (of 77 total)