- AuthorPosts
- January 6, 2008 at 11:29 am #5263PeterParticipant
I suggest add the following menu commands:
[Edit]
Enable Virtual Space
[View]
Show Ruler
Show Line NumberAlso 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.
January 6, 2008 at 6:45 pm #5264TheXmanParticipantHow about adding a “Save As…” toolbar button also? :-)
January 6, 2008 at 11:17 pm #5265Yutaka EmuraKeymasterwhileloop wrote:
I suggest add the following menu commands:
[Edit]
Enable Virtual Space
[View]
Show Ruler
Show Line NumberAlso 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();
January 6, 2008 at 11:19 pm #5266Yutaka EmuraKeymasterTheXman 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);
- AuthorPosts
- You must be logged in to reply to this topic.