EmEditor (text editor) Forum Index
   EmEditor Core Enhancement Suggestions
     Add menu command for......
Register To Post

Threaded | Newest First Previous Topic | Next Topic | Bottom
Poster Thread
whileloop
Posted on: 1/6/2008 2:29 am
Just popping in
Joined: 1/5/2008
From:
Posts: 15
Add menu command for......
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.

TheXman
Posted on: 1/6/2008 9:45 am
Not too shy to talk
Joined: 11/27/2006
From: Texas
Posts: 22
Re: Add menu command for......
How about adding a "Save As..." toolbar button also?
Yutaka
Posted on: 1/6/2008 2:17 pm
Webmaster
Joined: 9/28/2006
From: Redmond
Posts: 2399
Re: Add menu command for......
Quote:

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



----------------
Yutaka Emura
Developer of EmEditor
http://www.emeditor.com/

Yutaka
Posted on: 1/6/2008 2:19 pm
Webmaster
Joined: 9/28/2006
From: Redmond
Posts: 2399
Re: Add menu command for......
Quote:

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



----------------
Yutaka Emura
Developer of EmEditor
http://www.emeditor.com/

Threaded | Newest First Previous Topic | Next Topic | Top


Register To Post
 
English čeština Deutsch español français italiano 日本語 한국어 Русский 简体中文 繁體中文