Skip to content

Commit

Permalink
Default to auto-focus off
Browse files Browse the repository at this point in the history
  • Loading branch information
groves committed Aug 5, 2022
1 parent c6222f5 commit 383dbdf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion book/src/configuration.md
Expand Up @@ -44,7 +44,7 @@ You may also specify a file to use for configuration with the `-c` or
| `gutters` | Gutters to display: Available are `diagnostics` and `line-numbers` and `spacer`, note that `diagnostics` also includes other features like breakpoints, 1-width padding will be inserted if gutters is non-empty | `["diagnostics", "line-numbers"]` |
| `auto-completion` | Enable automatic pop up of auto-completion. | `true` |
| `auto-format` | Enable automatic formatting on save. | `true` |
| `auto-save` | Enable automatic saving on focus moving away from Helix. | `true` |
| `auto-save` | Enable automatic saving on focus moving away from Helix. | `false` |
| `idle-timeout` | Time in milliseconds since last keypress before idle timers trigger. Used for autocompletion, set to 0 for instant. | `400` |
| `completion-trigger-len` | The min-length of word under cursor to trigger autocompletion | `2` |
| `auto-info` | Whether to display infoboxes | `true` |
Expand Down
2 changes: 1 addition & 1 deletion helix-view/src/editor.rs
Expand Up @@ -488,7 +488,7 @@ impl Default for Config {
auto_pairs: AutoPairConfig::default(),
auto_completion: true,
auto_format: true,
auto_save: true,
auto_save: false,
idle_timeout: Duration::from_millis(400),
completion_trigger_len: 2,
auto_info: true,
Expand Down

0 comments on commit 383dbdf

Please sign in to comment.