#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();