You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/configuration.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ Additionally to the `settings.json` and `keybindings.json` files, the editor als
26
26
27
27
`{platform}` is one of (`windows`, `linux`, `other`) and `{backend}` is one of (`gui`, `terminal`, `browser`)
28
28
29
-
These additional settings files are useful for having different cofiguration on different operating systems
29
+
These additional settings files are useful for having different configuration on different operating systems
30
30
(e.g. different paths to LSP executables)
31
31
32
32
The `keybindings*.json` files can only bind existing commands (builtin or from plugins).
@@ -38,7 +38,7 @@ Settings are internally stored in stores, where each settings store consists of
38
38
39
39
Setting stores can override or extend the settings from the parent. Some stores are loaded from a file, some are only in memory.
40
40
41
-
Setting stores form a tree, with the base store at the root and indidual text editors (for individual files) as leaves.
41
+
Setting stores form a tree, with the base store at the root and individual text editors (for individual files) as leaves.
42
42
43
43
When the application reads the value of a setting, depending on the context it reads it from either an editor store, document store, language store or the runtime store.
44
44
@@ -252,7 +252,7 @@ The following special keys are defined:
252
252
To specify that a modifier should be held down together with another key you need to used `<XXX-YYY>`, where `XXX` is any combination of modifiers
253
253
(`S` = shift, `C` = control, `A` = alt) and `YYY` is either a single ascii character for the key, or one of the special keys (e.g. `ENTER`).
254
254
255
-
If you use a upper case ascii character as key then this automatically means it uses shift, so `A` is equivalent to `<S-a>` and `<S-A>`
255
+
If you use an upper case ascii character as key then this automatically means it uses shift, so `A` is equivalent to `<S-a>` and `<S-A>`
256
256
257
257
Some examples:
258
258
@@ -371,4 +371,4 @@ Here is an overview of the modules:
371
371
-`editor_api`: Contains general functions like changing font size, manipulating views, opening and closing files, etc.
372
372
-`editor_text_api`: Contains functions for interacting with a text editor (e.g. modifiying the content).
373
373
-`editor_model_api`: Contains functions for interacting with an model editor (e.g. modifying the content).
374
-
-`popup_selector_api`: Contains functions for interacting with a selector popup.
374
+
-`popup_selector_api`: Contains functions for interacting with a selector popup.
0 commit comments