Forum Replies Created

Viewing 25 posts - 51 through 75 (of 100 total)
  • Author
    Posts
  • in reply to: Document selector #8497
    ToadLoadin
    Member

    derekcohen wrote:
    I’ve just noticed there is a document selector…

    Hi derekcohen,

    When you right click the “Open Documents” icon in the plugin tool bar, then choose “properties…”, you can set the position where open documents pannel appears (up, right, down or left).

    Once the “Symbol” pannel of Projects plugin is closed, you can set projects tree opened in right and documents list opened in left.

    Wish that helps. :-)

    toadloading

    in reply to: EmEditor Professional v10 beta 9 (9.90.9) #8413
    ToadLoadin
    Member

    luxxon wrote:
    Dear ToadLoadin
    the theme is great. But my digits 012345 didn’t show different color in minizen theme, I shoud set which setting?

    Hi luxxon,

    The MinimalZen theme does not have the ability to display digits in different color, the screenshot used in this thread is just an example I copied from here to describe my idea.

    I guess you can let EmEditor display digits in different color by setting a highlight word with regular expression in certain configurations, please check out my screencast. :-)

    in reply to: Run-time user input, preferrably multiple-choice menu #8409
    ToadLoadin
    Member

    Hi Passiday,

    You are right, a message box with OK and Cancel buttons could be implemented via the confrim method, and you can find an example of displaying a message box with YES, NO, and Cancel buttons here.

    Further more, you can use a pop-up menu via the popupMenu object, so even more choices could be displayed. :-)

    in reply to: needs help on a macro to insert number row #8404
    ToadLoadin
    Member

    tonne wrote:
    prompt returns a string; is “2” < "10" ?

    OIC, it’s a string comparison instead of integer one.

    Thank you! :-D

    in reply to: needs help on a macro to insert number row #8402
    ToadLoadin
    Member

    tonne wrote:
    Try
    if (Math.abs(i) < Math.abs(n)) { //ascending

    That works!~~ :-) But…why that works? :-(

    in reply to: needs help on a macro to insert number row #8390
    ToadLoadin
    Member

    Hi zhouzh2,

    I modified your macro to this:

    cfg = document.Config;
    var userVSsetting = cfg.General.VirtualSpace;
    cfg.General.VirtualSpace = 'true';
    cfg.Save(); //enable VirtualSpace so that when inserting at '^a=nb=n...' will run normally.

    var i = prompt("Please enter the start number (not larger than 99)", 0);
    var n = prompt("Please enter the end number (not larger than 99)", 1); //promote

    if ((i == "")|| (n == "")){Quit();};
    if ((i > 99)|| (i < 0) || (n > 99)||(n < 0)) {alert("Error!"); Quit();}; //errors

    // Get current cursor position
    var iCol = document.selection.GetActivePointX(eePosLogicalA);
    var iLine = document.selection.GetActivePointY(eePosLogical);
    // Caculate the number of lines
    var nLines = Math.abs(i-n)+1;

    status = "Inserting - Please Wait...";

    for (var j=0; j < nLines; j++) {
    document.selection.SetActivePoint(eePosLogicalA, iCol, iLine+j);
    if (i < n) { //ascending
    document.selection.Text = i;
    i++;
    } else { //descending
    document.selection.Text = i;
    i--;
    }
    }

    cfg.General.VirtualSpace = userVSsetting;
    cfg.Save();
    status = "Inserting Completed";
    Quit();

    And observed an interesting issue, as you noticed:

    when 1<i10, or when 10<i<=99 and n<10

    The first number inserted will be the biggest one, I guess that’s why your macro fall into a infinite loop, but I can not figure out why this happens, perhaps a bug? 8-)

    in reply to: EmEditor Professional v10 beta 9 (9.90.9) #8380
    ToadLoadin
    Member

    Feature Request:
    Let the font customizable in OutputBar (font, color, weight and style),
    so which could look in someway like this: :-)

    in reply to: EmEditor Professional v10 beta 8 (9.90.8) #8331
    ToadLoadin
    Member

    Hi Yukata,
    Thank you for your quick response. I fully understand your choice, and hope to see future improvements. :-)

    in reply to: EmEditor Professional v10 beta 8 (9.90.8) #8320
    ToadLoadin
    Member

    Hi Yutaka,

    There is an issue about the auto indent feature, please check out my my screencast. :-)

    in reply to: EmEditor Professional v10 beta 8 (9.90.8) #8311
    ToadLoadin
    Member

    Hi Yutaka,
    The global option for snippets transforming works great, thank you! :-)

    in reply to: needs help on a macro to insert number row #8304
    ToadLoadin
    Member

    Hi zhouzh2,
    If your “somethinghere” in every line is exactly the same:


    a=1
    b=2
    c=3
    ..

    and:


    a = 1 somethinghere
    b = 2 somethinghere
    c = 3 somethinghere
    ..

    perhaps you could use “Insert Number Sequence” plugin, the Simplified Chinese version is here.

    in reply to: EmEditor Professional v10 beta 6 (9.90.6) #8288
    ToadLoadin
    Member

    Yutaka wrote:
    Thanks for your screencast. The global option will be supported in beta 7.

    Thank you for your quick response! :-D

    in reply to: EmEditor Professional v10 beta 6 (9.90.6) #8271
    ToadLoadin
    Member

    Hi Yutaka,

    I made a screen recording to explain what the “global option for snippets transforming” means, please check it: :-)

    http://www.dropbox.com/u/2516823/video/2010-04/emeditor-snipptes-regex-option.mp4

    in reply to: EmEditor Professional v10 beta 5 (9.90.5) #8248
    ToadLoadin
    Member

    Bug Report
    While exporting a portable version of EmEditor, dictionary files won’t be exported. Thus, if customized settings are exported at the same time and the “check spelling” is enabled, an alert will pop up.

    Feature Request
    Support more regular expression option such as “global” in snippet transforming, then more dynamic snippet could be implemented, like this :-)

    in reply to: EmEditor Professional v10 beta 4 (9.90.4) #8232
    ToadLoadin
    Member

    Bug Report:
    Hi Yutaka, there is something wrong with the new outline plugin, could you check my screen recording?
    Please download my screen recording here:
    http://www.dropbox.com/u/2516823/video/2010-03/emeditor-v10b4-outline-bug.flv

    in reply to: EmEditor Professional v10 beta 4 (9.90.4) #8226
    ToadLoadin
    Member

    Bug Report:
    An alert of “cannot find eeupdate.exe” will pop up at the first time running a portable version of EmEditor, whenever with customized setting exported or default setting exported.

    Feature Request:
    Retaining shortcuts settings after updating to newer version of EmEditor.

    After updating to the latest version of EmEditor, the “EmEditor” item or “Find in files with EmEditor” will always be added to the context menu of Windows explorer, though I have choosed to diable them at the previous version. I personally prefer to open files with EmEditor via “Send to” menu, so retaining that choice would be great. :-)

    in reply to: EmEditor Professional 10 beta 1 (9.90.1) #8185
    ToadLoadin
    Member

    WOW, that’s really exciting! :lol:

    in reply to: Add ability to select wrap/no wrap on a per-windows basis #8027
    ToadLoadin
    Member

    I think for now the wrapping-style setting is stored in specific file type configration.

    Which means, user can set plain text files to be wrapped by window, and some kinds of source code files to be not wrapped at the same time.

    in reply to: [SOLVED] Going back from .ini files to registry. #8017
    ToadLoadin
    Member

    Hi Salabim,

    You can backup your settings into a .reg file via the “Export all personal settings into a file” command, wich is the first choice listed in the “Import and Export Wizard”. :-)

    in reply to: Ctrl+Tab behavior change in EmEditor v9. A bug? #8012
    ToadLoadin
    Member

    Ctrl+Tab works fine under Windows 2000 with SP4, Action 2.
    :-)

    Yutaka wrote:
    I also tested on Windows XP, but still couldn’t reproduce this issue. Does anyone have the same issue? If so, please explain how you can reproduce this issue.

    in reply to: Why the move to spyware? #8008
    ToadLoadin
    Member

    I personally think the online authentication of registration key is acceptable, if customer’s privacy is properly protected. As Paul said, there are many other software companies protect their products via online authentication, including gigantic ones like Microsoft and Adobe.

    But I believe if EmEditor provides more informative instruction to users in different situation, such as those don’t have internet connection, Paul would be more satisfied, since most of companies described above provides very informative instruction and (or) alternative way for accomplishing the authentication task. :-)

    in reply to: [SOLVED] Going back from .ini files to registry. #8000
    ToadLoadin
    Member

    Hi Salabim,

    I guess your EmEditor will run at portable mode while your ini setting files are still in there, so you can’t find the choices in my screenshot. :-)

    How about move them to a seperate folder, then try again? I think the ini setting files are:

    in reply to: [SOLVED] Going back from .ini files to registry. #7997
    ToadLoadin
    Member

    Salabim wrote:
    Hi,

    I chose to use .ini files for making a backup of my settings, however, I noticed that it doesn’t start up as fast as when it used the registry. Is there any way to make it use the registry again please ?

    I tried deleting the eeUseIni.ini file, but then I lost all my configuration and macro- and snippets changes I made inbetween them.

    Please, How can I make it use the registry again, with current configuration ?

    Thanks a lot.

    Hi Salabim,

    You can choose “Import personal INI files to the Registry”, from the “Import and Export Wizard”, which sits under the “Tools” menu. :-)

    in reply to: zen-conding for emeditor #7974
    ToadLoadin
    Member

    :lol: wow, looks really great, could you tell me how to use it?
    Just setup a new macro snippet, then paste your macro into it?
    Or, other setting needed? :-)

    in reply to: Problem with macros in the portable version #7956
    ToadLoadin
    Member

    I think setting a enviroment variable such as $EmEditorPath$ in future version could help. :-)

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