aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists/src/lib.rs
Commit message (Collapse)AuthorAgeFilesLines
* Move `non_trivia_sibling` to `ra_syntax::algo`Ville Penttinen2019-02-211-5/+1
|
* Fix some typosPascal Hertleif2019-02-121-1/+1
|
* ra_assists: assist "providers" can produce multiple assistsAndrea Pretto2019-02-111-16/+59
|
* auto_import assistAndrea Pretto2019-02-091-0/+3
|
* Improve sorting delegaterobojumper2019-02-091-7/+5
|
* Remove unused importrobojumper2019-02-081-2/+2
|
* Add tests for action target rangesrobojumper2019-02-081-3/+63
|
* Add some assist rangesrobojumper2019-02-081-3/+37
|
* reformat the worldAleksey Kladov2019-02-081-11/+5
|
* Add new assist to remove dbg!() callsVille Penttinen2019-02-071-0/+2
| | | | | | | | | | | | | | | | | This fixes #758. Currently we try to maintain the cursor position relative to the statement under cursor, if the cursor is inside the dbg! macro call. Meaning: let foo = dbg!(some.complex<|>().expression()); Should turn into: let foo = some.complex<|>().expression(); With the cursor staying in place.
* assists: compute editkjeremy2019-02-061-1/+1
|
* move assists to a separate crateAleksey Kladov2019-02-061-0/+170