aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/compositor.rs
Commit message (Collapse)AuthorAge
* Macros (#1234)Omnikar2021-12-12
| | | | | | | | | | | | | | | | | | | | | | | | * Macros WIP `helix_term::compositor::Callback` changed to take a `&mut Context` as a parameter for use by `play_macro` * Default to `@` register for macros * Import `KeyEvent` * Special-case shift-tab -> backtab in `KeyEvent` conversion * Move key recording to the compositor * Add comment * Add persistent display of macro recording status When macro recording is active, the pending keys display will be shifted 3 characters left, and the register being recorded to will be displayed between brackets — e.g., `[@]` — right of the pending keys display. * Fix/add documentation
* ui: popup: Don't allow scrolling past the end of contentBlaž Hrastnik2021-12-10
|
* Only use a single documentation popup (#1241)Kirawi2021-12-08
|
* Simplify compositor.findBlaž Hrastnik2021-11-18
|
* Fix doctest broken on 2021 editionBlaž Hrastnik2021-10-22
|
* Prevent LSP Messages from displaying when a prompt is presented (#824)Leoi Hung Kin2021-10-15
| | | | | * Prevent LSP Messages from displaying when a prompt is presented * use match guard
* Show file preview in split pane in fuzzy finder (#534)Gokul Soumya2021-08-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add preview pane for fuzzy finder * Fix picker preview lag by caching * Add picker preview for document symbols * Cache picker preview per document instead of view * Use line instead of range for preview doc * Add picker preview for buffer picker * Fix render bug and refactor picker * Refactor picker preview rendering * Split picker and preview and compose The current selected item is cloned on every event, which is undesirable * Refactor out clones in previewed picker * Retrieve doc from editor if possible in filepicker * Disable syntax highlight for picker preview Files already loaded in memory have syntax highlighting enabled * Ignore directory symlinks in file picker * Cleanup unnecessary pubs and derives * Remove unnecessary highlight from file picker * Reorganize buffer rendering * Use normal picker for code actions * Remove unnecessary generics and trait impls * Remove prepare_for_render and make render mutable * Skip picker preview if screen small, less padding
* Add ctrl-z to suspendIvan Tham2021-08-03
|
* Resume last pickerIvan Tham2021-07-22
| | | | Inspired by space ' in doom emacs.
* Fix unused `Result` warnings in helix-term.Nathan Vegdahl2021-07-02
|
* Fix unused variable, parameter, and `mut` warnings in helix-term.Nathan Vegdahl2021-07-02
|
* Remove #[allow(unused)] from helix-term, and fix unused imports.Nathan Vegdahl2021-07-02
| | | | Lots of other warning still left. Will address in subsequent commits.
* Add some async job infrastructure.Joe Neeman2021-06-30
|
* Fix AnyComponent testBlaž Hrastnik2021-06-27
|
* reverse the dependency between helix-tui and helix-view (#366)Keith Simmons2021-06-25
| | | | | | | | | * reverse the dependency between helix-tui and helix-view by moving a fiew types to view * fix tests * clippy and format fixes Co-authored-by: Keith Simmons <keithsim@microsoft.com>
* Add progress spinners to status linewojciechkepka2021-06-21
|
* Fix doc warningsIvan Tham2021-06-20
|
* Add cursor kind to separate hidden cursor from posIvan Tham2021-06-15
| | | | | Now IME cursor position should be correct since we can still set cursor position without drawing the cursor.
* Disable failing doctestBlaž Hrastnik2021-06-07
|
* Clippy lintBlaž Hrastnik2021-06-03
|
* Fix split sizes getting out of sync with the terminal size, refs #69Blaž Hrastnik2021-06-03
|
* autoresize terminal in compositor renderJan Hrastnik2021-06-02
|
* Simplify the compositor callback.Blaž Hrastnik2021-05-09
|
* Inline tui as helix-tui fork.Blaž Hrastnik2021-05-09
| | | | | We only rely on some of the rendering primitives and implement our Cursive-style compositor on top.
* Tokio migration.Blaž Hrastnik2021-05-06
|
* ui: Improve completion state handling.Blaž Hrastnik2021-04-05
|
* Filter the completion menu based on text entered.Blaž Hrastnik2021-03-27
|
* wip: Async async. Delay response handling with a callback.Blaž Hrastnik2021-03-26
|
* Merge some imports.Blaž Hrastnik2021-03-22
|
* minor: TODO comment cleanupBlaž Hrastnik2021-03-16
|
* ui: popup: scroll documentation popups with c-u/c-d.Blaž Hrastnik2021-03-08
|
* ui: Move terminal into compositor, redo required_size hints.Blaž Hrastnik2021-03-08
|
* ui: Share popup code with menu.Blaž Hrastnik2021-03-02
| | | | Menu is now just wrapped in a popup.
* ui: Make editor more resilient about being shrunk too small.Blaž Hrastnik2021-03-01
|
* popup: wip work on completion popupsBlaž Hrastnik2021-02-09
|
* Refactoring: move language_servers into Editor, proper load for doc.Blaž Hrastnik2021-01-21
|
* Retrieve completion options on ctrl-x.Blaž Hrastnik2020-12-23
|
* ui: buffer picker on ctrl-bBlaž Hrastnik2020-12-21
|
* prompt: make the callback a FnOnce.Blaž Hrastnik2020-12-15
|
* Fix cursor positioning.Blaž Hrastnik2020-12-13
|
* wip: Move to new rendering structure.Blaž Hrastnik2020-12-13
|
* wip: Getting the new prompt to render in a new layer.Blaž Hrastnik2020-12-11
|
* move commands and keymap back to terminal.Blaž Hrastnik2020-12-10
| | | | | Command needs to be able to deal with UI. We'll separate it again later on.
* snapshotBlaž Hrastnik2020-12-07
|
* wip: CompositorBlaž Hrastnik2020-12-06