aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Add a selection mode again.Blaž Hrastnik2021-03-01
|
* ui: Make editor more resilient about being shrunk too small.Blaž Hrastnik2021-03-01
|
* commands: Implement join_selections.Blaž Hrastnik2021-02-26
|
* view: Reposition cursors on tree resize.Blaž Hrastnik2021-02-26
|
* graphemes: fix nth_prev_grapheme_boundary calculation.Blaž Hrastnik2021-02-26
|
* commands: = as range formatting (via lsp)Blaž Hrastnik2021-02-26
|
* lsp: Hover documentation draft.Blaž Hrastnik2021-02-25
|
* minor, fix clippy lintBlaž Hrastnik2021-02-25
|
* commands: Implement count for a few more commands.Blaž Hrastnik2021-02-25
|
* commands: refactor open_below to support count.Blaž Hrastnik2021-02-25
|
* graphemes: Optimize nth_next/nth_prev operation.Blaž Hrastnik2021-02-24
| | | | | It's used a lot more than it used to in position calculation. Instead of throwing away state between boundary calculation, reuse it.
* Improve coords_at_pos & pos_at_coords, test with graphemes.Blaž Hrastnik2021-02-24
|
* minor: Simplify some code.Blaž Hrastnik2021-02-24
|
* syntax: Drop the rayon dependency for threadpool.Blaž Hrastnik2021-02-24
| | | | We just need a small concurrent threadpool for compilation.
* flake: Packaging definition.Blaž Hrastnik2021-02-22
|
* open_below: drop redundant collect/into_iter.Blaž Hrastnik2021-02-22
|
* commands: Implement expand_selection.Blaž Hrastnik2021-02-22
|
* commands: add * as selection search.Blaž Hrastnik2021-02-22
|
* lsp: Disable snippet_support until we implement it.Blaž Hrastnik2021-02-22
|
* lsp: Handle responses being returned after request timed out.Blaž Hrastnik2021-02-22
|
* minorBlaž Hrastnik2021-02-22
|
* fix clippy lintBlaž Hrastnik2021-02-22
|
* completion: Use the language server bound to the document.Blaž Hrastnik2021-02-22
|
* Make some Document fields read-only.Blaž Hrastnik2021-02-21
|
* commands: Simplify some code, only calling cx.doc() once.Blaž Hrastnik2021-02-21
|
* Allow closing individual views.Blaž Hrastnik2021-02-19
|
* Remove unused method.Blaž Hrastnik2021-02-19
|
* Always store the log file under home dir.Blaž Hrastnik2021-02-19
|
* indent: use_list indentation, fix indentation bug on open_belowBlaž Hrastnik2021-02-19
| | | | | | use std::{ time::Duration // <- pressing `o` here would use }'s indent instead of prev line }
* commands: Wire up toggle comments as ctrl-cBlaž Hrastnik2021-02-19
|
* more lintsBlaž Hrastnik2021-02-18
|
* view: Disable tree.fullscreen for now to appease clippy.Blaž Hrastnik2021-02-18
|
* core: Implement comment toggling module.Blaž Hrastnik2021-02-18
|
* treewide: &RopeSlice -> RopeSlice. It's Copy so no reason to pass by refBlaž Hrastnik2021-02-18
|
* Bump jsonrpc-core, lsp-types.Blaž Hrastnik2021-02-18
|
* transaction: Also modify map_pos to work with insert|delete order.Blaž Hrastnik2021-02-18
|
* lsp: edit events change ranges need to affect each other.Blaž Hrastnik2021-02-17
|
* minor changesBlaž Hrastnik2021-02-17
|
* ui: Redo selection rendering.Blaž Hrastnik2021-02-17
|
* commands: tie in a simple :w for now.Blaž Hrastnik2021-02-16
|
* Increase the log level in LSP and log server errors.Blaž Hrastnik2021-02-16
|
* Update deps, switch tendril over to crates.ioBlaž Hrastnik2021-02-16
|
* Send updates to the lsp on undo/redo.Blaž Hrastnik2021-02-16
|
* lsp: Test changeset_to_changes.Blaž Hrastnik2021-02-16
|
* Optimize Changeset::is_empty()Blaž Hrastnik2021-02-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Checked the ASM output for these three options: pub enum Operation { /// Move cursor by n characters. Retain(usize), /// Delete n characters. Delete(usize), /// Insert text at position. Insert(String), } pub struct A { changes: Vec<Operation>, len: usize, } impl A { pub fn is_empty1(&self) -> bool { match self.changes.as_slice() { [] => true, [Operation::Retain(_)] => true, _ => false, } } /// `true` when the set is empty. pub fn is_empty2(&self) -> bool { let len = self.changes.len(); len == 0 || ( len == 1 && self.changes[0] == Operation::Retain(self.len) ) } pub fn is_empty3(&self) -> bool { match self.changes.as_slice() { [] | [Operation::Retain(_)] => true, _ => false } } }
* Since insert preceedes deletes, follow that ordering in Transaction::changes.Blaž Hrastnik2021-02-16
| | | | Produces the same output but will take the happy path.
* Adjust LSP changeset generation too: insert now always preceedes delete.Blaž Hrastnik2021-02-16
|
* transaction: Use builder methods to generate compact changesets.Blaž Hrastnik2021-02-16
|
* transaction: Merge consecutive inserts on compose.Blaž Hrastnik2021-02-15
|
* fix testBlaž Hrastnik2021-02-15
|