Skip to content

Commit 0626f5f

Browse files
committed
Default to auto-focus off
1 parent 4259f63 commit 0626f5f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

book/src/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ You may also specify a file to use for configuration with the `-c` or
4444
| `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"]` |
4545
| `auto-completion` | Enable automatic pop up of auto-completion. | `true` |
4646
| `auto-format` | Enable automatic formatting on save. | `true` |
47-
| `auto-save` | Enable automatic saving on focus moving away from Helix. | `true` |
47+
| `auto-save` | Enable automatic saving on focus moving away from Helix. | `false` |
4848
| `idle-timeout` | Time in milliseconds since last keypress before idle timers trigger. Used for autocompletion, set to 0 for instant. | `400` |
4949
| `completion-trigger-len` | The min-length of word under cursor to trigger autocompletion | `2` |
5050
| `auto-info` | Whether to display infoboxes | `true` |

helix-view/src/editor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ impl Default for Config {
488488
auto_pairs: AutoPairConfig::default(),
489489
auto_completion: true,
490490
auto_format: true,
491-
auto_save: true,
491+
auto_save: false,
492492
idle_timeout: Duration::from_millis(400),
493493
completion_trigger_len: 2,
494494
auto_info: true,

0 commit comments

Comments
 (0)