diff options
author | Philipp Emanuel Weidmann | 2024-05-01 21:07:50 +0000 |
---|---|---|
committer | JJ | 2024-05-01 23:06:27 +0000 |
commit | 3ecf200b3469f63016b27141c20286a36d5dd9eb (patch) | |
tree | c3e5e76d99fc4fc42d39cecccf2b47a4592623a8 /book | |
parent | 7cf650270c78238b5efd7ea4182205114f53540b (diff) |
Make initial editing mode configurable
ref: https://github.com/helix-editor/helix/pull/3366
Co-authored-by: JJ <git@toki.la>
Diffstat (limited to 'book')
-rw-r--r-- | book/src/configuration.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/book/src/configuration.md b/book/src/configuration.md index e3dbce95..147e4eba 100644 --- a/book/src/configuration.md +++ b/book/src/configuration.md @@ -69,6 +69,7 @@ Its settings will be merged with the configuration directory `config.toml` and t | `popup-border` | Draw border around `popup`, `menu`, `all`, or `none` | `none` | | `indent-heuristic` | How the indentation for a newly inserted line is computed: `simple` just copies the indentation level from the previous line, `tree-sitter` computes the indentation based on the syntax tree and `hybrid` combines both approaches. If the chosen heuristic is not available, a different one will be used as a fallback (the fallback order being `hybrid` -> `tree-sitter` -> `simple`). | `hybrid` | `jump-label-alphabet` | The characters that are used to generate two character jump labels. Characters at the start of the alphabet are used first. | `"abcdefghijklmnopqrstuvwxyz"` +| `initial-mode` | The initial mode for newly opened editors. | `"normal"` | ### `[editor.statusline]` Section |