aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/ui/mod.rs
Commit message (Collapse)AuthorAge
* Sort the files in descending orderBlaž Hrastnik2021-06-28
|
* Address nightly clippy warningsBlaž Hrastnik2021-06-27
|
* Sort files in file picker by access, modification and creation date (#336)Wojciech Kępka2021-06-26
| | | | | | | | | * Sort files in file picker by access date * Fallback file time to modified then created then UNIX_EPOCH * Use `sort_by_key` * Refactor
* 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>
* Make the prompt callback take a Context.Joe Neeman2021-06-23
|
* Implement change_current_directory commandLionel Flandrin2021-06-22
|
* minor: Remove old TODOsBlaž Hrastnik2021-06-22
|
* Add a `Spinner`wojciechkepka2021-06-21
|
* Add theme completerwojciechkepka2021-06-19
|
* Fix expansion of `~` (#284)Wojciech Kępka2021-06-18
| | | | | | | | | | | | | * Fix expansion of `~`, dont use directory relative to cwd. * Add `expand_tilde` * Bring back `canonicalize_path`, use `expand_tilde` to `normalize` * Make `:open ~` completion work * Fix clippy * Fold home dir into tilde in Document `realitve_path`
* Replace `Editor::current` by a macroBenoît CORTIER2021-06-18
| | | | | | | | | This is necessary to workaround ownership issues across function calls. The issue notably arised when implementing the registers into `Editor` and I was getting annoyed again when implementing copy/pasting into system clipboard. The problem is addressed by using macro calls instead of function calls. There is no notable side effect.
* Remove RwLock for registersBenoît CORTIER2021-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.
* Only enforce limit outside of .gitKevin Sjöberg2021-06-09
|
* Bump file picker limitKevin Sjöberg2021-06-08
|
* Double the UI picker file limit.Blaž Hrastnik2021-05-18
|
* Define text color (mostly) in theme.toml.Blaž Hrastnik2021-05-07
|
* Command mode: Per command completers.Blaž Hrastnik2021-05-07
|
* lsp: support both utf-8 and utf-16 offsets.Blaž Hrastnik2021-04-14
| | | | | Still need to implement the clangd encoding negotiation, but it's a start. Should also manually override to utf8 for pyls.
* Center search results.Blaž Hrastnik2021-04-14
|
* Simplify some code.Blaž Hrastnik2021-04-01
|
* Simplify code by providin cx.current() = (view, doc).Blaž Hrastnik2021-04-01
|
* clippy lintBlaž Hrastnik2021-03-31
|
* Weave through view_id references so that views into one file have ↵Blaž Hrastnik2021-03-31
| | | | independent selects.
* Teach file picker how to find the project root (.git).Blaž Hrastnik2021-03-30
|
* Store intra-files jumps (goto) on the jumplist.Blaž Hrastnik2021-03-29
|
* Wire up opening in splits via pickers.Blaž Hrastnik2021-03-29
|
* Filter the completion menu based on text entered.Blaž Hrastnik2021-03-27
|
* Restore buffer_picker.Blaž Hrastnik2021-03-24
|
* editor.open can now either replace the current view or open in a split.Blaž Hrastnik2021-03-24
|
* Drop refcell use, make view simply ref doc.id.Blaž Hrastnik2021-03-23
|
* Store Document on the Editor type, make View reference it.Blaž Hrastnik2021-03-22
|
* clippy: Factor out a Completion type.Blaž Hrastnik2021-03-22
|
* Improve completion: src/<tab> will now correctly complete to src/main.rsBlaž Hrastnik2021-03-21
|
* Finish hiding doc.state / State as an implementation detail.Blaž Hrastnik2021-03-18
|
* Hold a reference to executor on the Editor type.Blaž Hrastnik2021-03-16
|
* ui: wip: Markdown doc renderer.Blaž Hrastnik2021-03-05
|
* commands: Stop select_regex from breaking when no matches.Blaž Hrastnik2021-03-03
|
* clippy lintBlaž Hrastnik2021-03-02
|
* ui: Share popup code with menu.Blaž Hrastnik2021-03-02
| | | | Menu is now just wrapped in a popup.
* ui: Rework command mode, implement file path completion.Blaž Hrastnik2021-03-01
|
* lsp: Hover documentation draft.Blaž Hrastnik2021-02-25
|
* search: Barebones implementation.Blaž Hrastnik2021-02-12
|
* popup: wip work on completion popupsBlaž Hrastnik2021-02-09
|
* View tree implementation: render multiple split views.Blaž Hrastnik2021-02-03
| | | | | Cursors are still a bit buggy and we should render in focus statusbar differently than in the other pane.
* commands: Implement select_on_matches.Blaž Hrastnik2021-01-22
|
* Refactoring: move language_servers into Editor, proper load for doc.Blaž Hrastnik2021-01-21
|
* buffer picker: Mark current view with (*)Blaž Hrastnik2020-12-21
|
* ui: buffer picker on ctrl-bBlaž Hrastnik2020-12-21
|
* picker: Factor out file picker, we want to reuse code for other pickers.Blaž Hrastnik2020-12-18
|
* File picker mockup, reuses the line editor work done on Prompt.Blaž Hrastnik2020-12-17
|