Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | feat(commands): add clear-register typable command (#5695) | jorge | 2023-04-27 |
| | | | Co-authored-by: Jorge <chorcheus@tutanota.com> | ||
* | Refactor blackhole register (#4504) | ath3 | 2022-11-15 |
| | |||
* | fixes showing the last prompt on empty input (#2870) | Saber Haj Rabiee | 2022-06-24 |
| | |||
* | prompt: If submitting empty prompt, use default (last used) | Blaž Hrastnik | 2022-06-06 |
| | |||
* | Show infobox with register contents | Gokul Soumya | 2022-02-10 |
| | |||
* | Implement black hole register (#1165) | ath3 | 2021-11-28 |
| | |||
* | Mark a few functions as `const` | Blaž Hrastnik | 2021-10-24 |
| | |||
* | Implement in-memory prompt history | Blaž Hrastnik | 2021-07-26 |
| | | | | | Implementation is similar to kakoune: we store the entries into a register. | ||
* | Remove RwLock for registers | Benoît CORTIER | 2021-06-15 |
| | | | | | | | | Registers are stored inside `Editor` and accessed without `RwLock`. To work around ownership, I added a sister method to `Editor::current`: `Editor::current_with_context`. I tried to modify `Editor::current` directly but it's used at a lot of places so I reverted into this for now at least. | ||
* | Implement register selection | Benoît CORTIER | 2021-06-07 |
| | | | | | | User can select register to yank into with the " command. A new state is added to `Editor` and `commands::Context` structs. This state is managed by leveraging a new struct `RegisterSelection`. | ||
* | Simple yank/paste registers. | Blaž Hrastnik | 2020-10-13 |