(Other Resources)
 
Line 34: Line 34:
 
:Set the right margin only in the current edit buffer. Other buffers and the "global" value are not affected.
 
:Set the right margin only in the current edit buffer. Other buffers and the "global" value are not affected.
  
==Other Resources==
+
==Related Resources==
*[[Command_Line_Overview#Basic_Commands|Basic Commands]]
+
*[[Command_Line#Basic_Commands|Basic Commands]]
 
*[[Command Mode| Command Mode Overview]]
 
*[[Command Mode| Command Mode Overview]]
*[[Command Line Overview]]
+
*[[Command_Line|Command Line Overview]]

Latest revision as of 17:30, 20 February 2017


For maximum flexibility when editing multiple files, vEdit maintains a separate set of Tab stops and selected configuration parameters for each edit buffer. For example, You may have word wrap enabled for one file being edited, but not for another.

The edit-buffer dependent configuration parameters are identified with a "(*)" in their name. Many of the programming, word processing and file handling parameters are included.

When modifying any of the configurations under the Config, such as Tab/Fill, the Config all buffers controls whether the Config menu changes apply only to the current edit-buffer or all buffers.


Vedit-Config-all-buffers.png


The Config command is even more flexible; you can change up to three different copies of each edit-buffer dependent parameter.


  • The "global" copy of the configuration parameter is used as the initial value for all newly opened edit buffers. It is also the copy saved locally by clicking Config then Save Config....
  • The "local" copy of the configuration parameter in the current edit buffer.
  • The additional copies of the configuration parameter in any additional edit buffers that are currently open.

The Config( ) command without options, changes both the "local" value and the "global" value. This is equivalent to the Config menu with Config all buffers disabled.

Config(W_RT_MARG,70)
Set the right margin in the current edit buffer and set the "global" value. Other existing edit buffers are not affected.

Use of the ALL option changes all copies of the configuration parameter. This is equivalent to the Config menu with Config all buffers enabled.

Config(W_RT_MARG,70,ALL)
Set the right margin in all edit buffers and set the "global" value.

Use of the "LOCAL" option changes only the copy in the current edit buffer. The "global" copy is not changed. This cannot be done with the Config menu.

Config(W_RT_MARG,70,LOCAL)
Set the right margin only in the current edit buffer. Other buffers and the "global" value are not affected.

Related Resources