aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_editor
Commit message (Collapse)AuthorAgeFilesLines
* Merge #395bors[bot]2018-12-312-11/+7
|\ | | | | | | | | | | | | | | 395: generalize r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * generalize highlighting to work with nodesAleksey Kladov2018-12-311-3/+3
| |
| * generalize extend selection to work with nodesAleksey Kladov2018-12-311-8/+4
| |
* | Make modules with tests runnableJan Jansen2018-12-311-59/+1
|/ | | | Fixes #154
* avoid allocating an unnecessary intermediate vector & not traverse multiple ↵gfreezy2018-12-301-62/+72
| | | | times
* implement struct shorthand initialization diagnosticgfreezy2018-12-302-112/+268
|
* highlight macro identsAleksey Kladov2018-12-281-3/+32
|
* Bump itertools from 0.7.11 to 0.8.0dependabot[bot]2018-12-271-1/+1
| | | | | | | Bumps [itertools](https://github.com/bluss/rust-itertools) from 0.7.11 to 0.8.0. - [Release notes](https://github.com/bluss/rust-itertools/releases) - [Commits](https://github.com/bluss/rust-itertools/compare/0.7.11...0.8.0) Signed-off-by: dependabot[bot] <[email protected]>
* Merge #325bors[bot]2018-12-274-104/+545
|\ | | | | | | | | | | | | | | | | | | 325: implement translate_offset_with_edit r=matklad a=vemoo - Implement `translate_offset_with_edit` to resolve #105 - Add proptest impls for text, offsets and edits and use them in tests for `translate_offset_with_edit` and `LineIndex` - Added benchmark for `translate_offset_with_edit` Co-authored-by: Bernardo <[email protected]>
| * test code and dependency cleanupBernardo2018-12-252-4/+2
| |
| * change to `TextEdit` to avoid allocation and sortBernardo2018-12-251-47/+39
| | | | | | | | rename newline to step where applicable
| * remove benchmark and simplify testsBernardo2018-12-254-144/+41
| |
| * use new translate_offset_with_edit for TryConvWithBernardo2018-12-252-1/+2
| | | | | | | | doc comments
| * add line_index proptestBernardo2018-12-252-106/+132
| |
| * make criterion args work, small simplificationBernardo2018-12-253-18/+18
| |
| * fix arbitrary offset generation, col translation workingBernardo2018-12-252-39/+92
| |
| * column translation implemented but not quite working yetBernardo2018-12-253-50/+70
| |
| * iterate over `Step`s which are either, newlines or multibyte charsBernardo2018-12-252-26/+121
| |
| * simplify newline check with macroBernardo2018-12-251-20/+14
| |
| * remove slower impl, add benchmarksBernardo2018-12-254-199/+119
| |
| * final iteration, faster a bit simplerBernardo2018-12-251-171/+209
| | | | | | | | the main thing is we iterate over inserted newlines at once for each edit
| * simplified versionBernardo2018-12-251-0/+139
| |
| * move translate_offset_with_edit to ra_editorBernardo2018-12-254-2/+266
| |
| * initial newline translation workingBernardo2018-12-251-1/+5
| | | | | | | | | | | | todo: cleanup, simplify handle columns
* | check edits in diagnosticsAleksey Kladov2018-12-272-34/+30
| |
* | fix use std::{self}gfreezy2018-12-262-12/+42
| |
* | fix testsgfreezy2018-12-251-1/+1
| |
* | add fix for removing unnecessary braces in use statementsgfreezy2018-12-253-23/+41
|/
* Merge #326bors[bot]2018-12-241-2/+54
|\ | | | | | | | | | | | | | | 326: resolved #324: remove unnecessary braces in use statement. r=matklad a=gfreezy Add inspection for unnecessary braces in use statement Co-authored-by: gfreezy <[email protected]>
| * keep severity to Error & WeakWarninggfreezy2018-12-241-9/+7
| |
| * add serverity to vscode diagnosticsgfreezy2018-12-231-8/+11
| |
| * resolved #324: remove unnecessary braces in use statement.gfreezy2018-12-231-2/+53
| |
* | Add make_pub_crate code action to ra_editorHirokazu Hata2018-12-242-2/+74
|/
* join lines collapses use_treesAleksey Kladov2018-12-211-0/+58
|
* fold curly blocksAleksey Kladov2018-12-201-15/+25
|
* generalize folding testsAleksey Kladov2018-12-201-21/+21
| | | | By using xml-like tags, we will be able to test nested foldings.
* rename Edit to TextEdit and AtomEdit to AtomTextEditBernardo2018-12-113-16/+21
|
* extract AtomEdit and Edit into new ra_text_edit crateBernardo2018-12-104-87/+4
|
* use \b as word boundaryBernardo2018-12-091-2/+30
|
* Implement and test format hookDJMcNab2018-12-091-1/+1
|
* find next whitespace or begining or endBernardo2018-12-081-3/+3
|
* Merge #264bors[bot]2018-12-081-1/+20
|\ | | | | | | | | | | | | | | 264: check for empty range when extending in comment r=matklad a=vemoo fix for #140 Co-authored-by: Bernardo <[email protected]>
| * check for empty range when extending in commentBernardo2018-12-081-1/+20
| |
* | Add a better text for hover and stop duplicating work done in ↵DJMcNab2018-12-081-0/+55
|/ | | | approximatelly_resolve_symbol
* modernize even moreAleksey Kladov2018-12-063-13/+5
|
* Merge #252bors[bot]2018-12-022-7/+44
|\ | | | | | | | | | | | | | | | | | | | | 252: Improve 'introduce variable' r=matklad a=flodiebold - make it possible to extract a prefix of an expression statement (e.g. `<|>foo.bar()<|>.baz()`) - don't turn the last expression in a block into a let statement - also fix a few typos Co-authored-by: Florian Diebold <[email protected]>
| * Improve 'introduce variable'Florian Diebold2018-12-022-7/+44
| | | | | | | | | | | | - make it possible to extract a prefix of an expression statement (e.g. <|>foo.bar()<|>.baz()) - don't turn the last expression in a block into a let statement
* | Add `derive` after doc commentsAleksey Kladov2018-12-021-5/+36
| |
* | Complete paths after ::Aleksey Kladov2018-11-211-6/+1
| |
* | cargo formatAdolfo Ochagavía2018-11-161-14/+98
| |