You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
helix/helix-view/src
Hendrik Wolff 265608a3d8
Auto Save All Buffers After A Delay (#10899)
* auto save after delay

* configable

* clearer names

* init

* working with some odd behaviour

* working with greater consistency

* Apply reviewer suggestions

- Remove unneccessary field
- Remove blocking save

* Improve auto-save configuration

Auto save can be configured to trigger on focus loss:
```toml
auto-save.focus-lost = true|false
```

and after a time delay (in milli seconds) since last keypress:
```toml
auto-save.after-delay.enable = true|false
auto-save.after-delay.timeout = [0, u64::MAX] # default: 3000
```

* Remove boilerplate and unnecessary types

* Remove more useless types

* Update docs for auto-save.after-delay

* Fix wording of (doc) comments relating to auto-save

* book: Move auto-save descriptions to separate section

---------

Co-authored-by: Miguel Perez <miguelvojito@gmail.com>
Co-authored-by: Miguel Perez <perezoji@cs.fsu.edu>
5 months ago
..
handlers Remove unwrap on line option, preventing DAP crash (#9632) 9 months ago
base64.rs Fix new clippy lints (#5892) 2 years ago
clipboard.rs FIx incorrectly spelled cfg options (#10703) 6 months ago
document.rs Handle relative symlinks on write (#10790) 6 months ago
editor.rs Auto Save All Buffers After A Delay (#10899) 5 months ago
events.rs Add hook/event system 10 months ago
graphics.rs tui: Constify functions, shrink Margin representation 6 months ago
gutter.rs use newtype parttern for langauge server id 7 months ago
handlers.rs Auto Save All Buffers After A Delay (#10899) 5 months ago
info.rs Use refactored Registers type 1 year ago
input.rs Normalize `S-<lower-ascii>` keymaps to uppercase ascii (#9213) 10 months ago
keyboard.rs build(deps): bump bitflags from 1.3.2 to 2.0.2 (#6387) 2 years ago
lib.rs Re-export `which` from `helix-stdx::env` 10 months ago
macros.rs Apply transactions to all views (#4733) 2 years ago
register.rs `cargo fmt` 6 months ago
theme.rs Add tree-sitter-highlight-name command (#8170) 1 year ago
tree.rs Resolve new Clippy lints 6 months ago
view.rs show newest options in jumplist picker first, fix docs (#10095) 8 months ago