2017-11-02 03:03:24 +01:00
|
|
|
= Scopes
|
2016-10-13 10:55:09 +02:00
|
|
|
|
2017-11-02 03:03:24 +01:00
|
|
|
== Description
|
2016-10-13 10:55:09 +02:00
|
|
|
|
2018-04-28 17:41:24 +02:00
|
|
|
Scopes are groups in which a particular Kakoune object can have different
|
|
|
|
values depending on the group the value was declared in.
|
|
|
|
|
|
|
|
These scoped objects are:
|
|
|
|
|
|
|
|
- aliases (See <<commands#, `:doc commands`>>)
|
|
|
|
- faces (See <<faces#, `:doc faces`>>)
|
|
|
|
- highlighters (See <<highlighters#, `:doc highlighters`>>)
|
|
|
|
- hooks (See <<hooks#, `:doc hooks`>>)
|
|
|
|
- keymaps (See <<mapping#, `:doc mapping`>>)
|
|
|
|
- options (See <<options#, `:doc options`>>)
|
2016-10-13 10:55:09 +02:00
|
|
|
|
2017-11-02 03:03:24 +01:00
|
|
|
== Names and hierarchy
|
2016-10-13 10:55:09 +02:00
|
|
|
|
|
|
|
Scopes are named as follows:
|
|
|
|
|
|
|
|
*window*::
|
2017-11-02 10:37:39 +01:00
|
|
|
context linked to the window displaying a buffer
|
2018-03-11 18:04:05 +01:00
|
|
|
|
2016-10-13 10:55:09 +02:00
|
|
|
*buffer*::
|
2017-11-02 10:37:39 +01:00
|
|
|
context linked directly to the buffer
|
2018-03-11 18:04:05 +01:00
|
|
|
|
2016-10-13 10:55:09 +02:00
|
|
|
*global*::
|
2017-11-02 10:37:39 +01:00
|
|
|
global context linked to the instance of Kakoune
|
2016-10-13 10:55:09 +02:00
|
|
|
|
|
|
|
The following order of priority applies to the above scopes:
|
|
|
|
|
|
|
|
--------------------------
|
|
|
|
window ]> buffer ]> global
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
The above priority line implies that objects can have individual values that
|
|
|
|
will be resolved first in the *window* scope (highest priority), then in
|
|
|
|
the *buffer* scope, and finally in the *global* scope (lowest priority).
|
|
|
|
|
2018-03-11 18:04:05 +01:00
|
|
|
The `set-option` and `unset-option` commands also accept *current* as
|
|
|
|
a valid scope name. It refers to the narrowest scope the option is set in.
|
|
|
|
|
2017-11-02 03:03:24 +01:00
|
|
|
== Uses
|
2016-10-13 10:55:09 +02:00
|
|
|
|
|
|
|
The scope paradigm is very useful as it allows the user to customize the
|
|
|
|
behavior of the editor without modifying the configuration globally, as
|
|
|
|
is the case with other editors who only have a single *global* scope by
|
|
|
|
default.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
*filetype*::
|
2017-11-02 10:37:39 +01:00
|
|
|
A single buffer opened in two separate windows can have different
|
2017-11-06 10:08:59 +01:00
|
|
|
filetypes declared in the *window* scope with 'set'.
|
|
|
|
(See <<options#,`:doc options`>>)
|
2016-10-13 10:55:09 +02:00
|
|
|
|
|
|
|
*status line*::
|
2017-11-02 10:37:39 +01:00
|
|
|
All the buffers of the current session can have the same information
|
|
|
|
displayed in the status line, except for a specific buffer (the
|
|
|
|
'modelinefmt' option can be declared in the *global* scope, and
|
2017-11-06 10:08:59 +01:00
|
|
|
customized in the *buffer* scope with 'set'.
|
|
|
|
(See <<options#,`:doc options`>>)
|
2016-10-13 10:55:09 +02:00
|
|
|
|
2017-11-02 03:03:24 +01:00
|
|
|
== Execution context
|
2016-10-13 10:55:09 +02:00
|
|
|
|
|
|
|
Some commands work in a specific context that might exclude one or
|
|
|
|
several scopes altogether, consequently ignoring some values of a given
|
|
|
|
object.
|
|
|
|
|
|
|
|
Example: the *window* scope is never considered when resolving the
|
|
|
|
values of options when writing a buffer (e.g. 'BOM', 'eolformat').
|