Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #5263
    Peter
    Participant

    I suggest add the following menu commands:
    [Edit]
    Enable Virtual Space
    [View]
    Show Ruler
    Show Line Number

    Also I suggest add an option to enable virtual space for column select. I requre this to keep alignment of columns (when not every line of the same length). Changing the option to allow this, and then changing back everytime is inconvenient.

    #5264
    TheXman
    Participant

    How about adding a “Save As…” toolbar button also? :-)

    #5265
    Yutaka Emura
    Keymaster

    whileloop wrote:
    I suggest add the following menu commands:
    [Edit]
    Enable Virtual Space
    [View]
    Show Ruler
    Show Line Number

    Also I suggest add an option to enable virtual space for column select. I requre this to keep alignment of columns (when not every line of the same length). Changing the option to allow this, and then changing back everytime is inconvenient.

    Use following macros, and you can add these macros to anywhere in the menu.

    TogleVirtualSpace.jsee:


    cfg = document.Config;
    cfg.General.VirtualSpace = !cfg.General.VirtualSpace;
    cfg.Save();

    ToggleRuler.jsee:


    cfg = document.Config;
    cfg.General.ShowRuler = !cfg.General.ShowRuler;
    cfg.Save();

    ToggleLineNumbers.jsee:


    cfg = document.Config;
    cfg.General.ShowLineNumbers = !cfg.General.ShowLineNumbers;
    cfg.Save();
    #5266
    Yutaka Emura
    Keymaster

    TheXman wrote:
    How about adding a “Save As…” toolbar button also? :-)

    Use the following macro, and you can add this macro to anywhere in the toolbars.

    SaveAs.jsee:


    #icon="any icon file"
    #title = ""
    #tooltip = "Save As"
    editor.ExecuteCommandByID(4100);
Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.