Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Simplify | Aleksey Kladov | 2020-05-06 | 1 | -13/+9 |
| | |||||
* | Rename | Aleksey Kladov | 2020-05-06 | 1 | -9/+9 |
| | |||||
* | Use SourceChange for assists | Aleksey Kladov | 2020-05-06 | 1 | -11/+19 |
| | |||||
* | Fix TODO | Aleksey Kladov | 2020-05-06 | 1 | -4/+4 |
| | |||||
* | Move target to AssistLabel | Aleksey Kladov | 2020-05-06 | 1 | -13/+4 |
| | | | | | Target is used for assists sorting, so we need it before we compute the action. | ||||
* | Rename AtomTextEdit -> Indel | Aleksey Kladov | 2020-05-05 | 1 | -3/+1 |
| | |||||
* | Minor cleanups | Aleksey Kladov | 2020-05-05 | 1 | -1/+0 |
| | |||||
* | Move group_label where it belongs | Aleksey Kladov | 2020-05-05 | 1 | -4/+3 |
| | |||||
* | use GroupLabel for type safety | Aleksey Kladov | 2020-05-05 | 1 | -3/+4 |
| | |||||
* | Minor rename | Aleksey Kladov | 2020-05-05 | 1 | -3/+3 |
| | |||||
* | Flip Assist::new arguments | Aleksey Kladov | 2020-05-05 | 1 | -2/+2 |
| | |||||
* | Support auto-import in macro | Edwin Cheng | 2020-05-02 | 1 | -5/+25 |
| | |||||
* | Convert code to text-size | Aleksey Kladov | 2020-04-25 | 1 | -4/+4 |
| | |||||
* | Add target file information to AssistAction | Timo Freiberg | 2020-04-21 | 1 | -1/+7 |
| | |||||
* | Generalise syntax rewriting infrastructure to allow removal of nodes | Aleksey Kladov | 2020-03-24 | 1 | -0/+6 |
| | |||||
* | Unfold groups with single assists into plain assists | Kirill Bulatov | 2020-03-05 | 1 | -2/+5 |
| | |||||
* | Refactor primary IDE API | Aleksey Kladov | 2020-02-26 | 1 | -29/+11 |
| | | | | | | | | | | This introduces the new type -- Semantics. Semantics maps SyntaxNodes to various semantic info, such as type, name resolution or macro expansions. To do so, Semantics maintains a HashMap which maps every node it saw to the file from which the node originated. This is enough to get all the necessary hir bits just from syntax. | ||||
* | Simplify Assists interface | Aleksey Kladov | 2020-02-09 | 1 | -45/+38 |
| | | | | | Instead of building a physical tree structure, just "tag" related assists with the same group | ||||
* | Slightly simpler API for groups | Aleksey Kladov | 2020-02-09 | 1 | -29/+63 |
| | |||||
* | Name assist handlers | Aleksey Kladov | 2020-02-07 | 1 | -0/+2 |
| | |||||
* | Cleanup | Aleksey Kladov | 2020-02-07 | 1 | -4/+3 |
| | |||||
* | Simplify | Aleksey Kladov | 2020-02-07 | 1 | -14/+2 |
| | |||||
* | Assists are not generic | Aleksey Kladov | 2020-02-06 | 1 | -8/+8 |
| | |||||
* | Start switching assists to a root database | Aleksey Kladov | 2020-02-06 | 1 | -4/+12 |
| | |||||
* | Initial auto import action implementation | Kirill Bulatov | 2020-01-26 | 1 | -2/+0 |
| | |||||
* | Make FromSource private | Aleksey Kladov | 2020-01-16 | 1 | -2/+6 |
| | |||||
* | Reduce visibility | Kirill Bulatov | 2020-01-15 | 1 | -1/+1 |
| | |||||
* | itertools::Either -> either::Either | Kirill Bulatov | 2020-01-15 | 1 | -1/+1 |
| | |||||
* | Apply the api design suggestions | Kirill Bulatov | 2020-01-15 | 1 | -11/+14 |
| | |||||
* | Another attempt to add multiple edits | Kirill Bulatov | 2020-01-15 | 1 | -6/+39 |
| | |||||
* | Cleanup assert | kjeremy | 2020-01-14 | 1 | -5/+1 |
| | |||||
* | unwrap | Jeremy Kolb | 2020-01-14 | 1 | -2/+2 |
| | |||||
* | Assert that first letter is capitalized | Jeremy Kolb | 2020-01-14 | 1 | -0/+6 |
| | |||||
* | Fill in type params in 'add missing impl members' assist | Florian Diebold | 2019-12-24 | 1 | -1/+1 |
| | |||||
* | Rename Source -> InFile | Aleksey Kladov | 2019-11-28 | 1 | -2/+2 |
| | |||||
* | Force passing Source when creating a SourceAnalyzer | Aleksey Kladov | 2019-11-15 | 1 | -1/+1 |
| | |||||
* | Reduce some duplication | Aleksey Kladov | 2019-11-15 | 1 | -2/+8 |
| | |||||
* | further simplify assists | Aleksey Kladov | 2019-10-27 | 1 | -20/+16 |
| | |||||
* | simplify AssistCtx API | Aleksey Kladov | 2019-10-27 | 1 | -7/+3 |
| | | | | | We never actually use ability to create multiple actions out of a single context | ||||
* | lightly document assist_ctx module | Aleksey Kladov | 2019-10-27 | 1 | -1/+1 |
| | |||||
* | use more consistent naming | Aleksey Kladov | 2019-10-27 | 1 | -1/+1 |
| | | | | | I think this is the first time I use global rename for rust-analyzer itself :-) | ||||
* | extract assist helper for getting a specific token | Aleksey Kladov | 2019-10-27 | 1 | -1/+5 |
| | |||||
* | add syntax-tree based indents | Aleksey Kladov | 2019-10-12 | 1 | -0/+1 |
| | |||||
* | Merge branch 'master' into feature/issue/1856 | Alexander Andreev | 2019-09-30 | 1 | -1/+5 |
|\ | | | | | | | | | # Conflicts: # crates/ra_assists/src/ast_editor.rs | ||||
| * | move field list to ast/edit.rs | Aleksey Kladov | 2019-09-30 | 1 | -3/+1 |
| | | |||||
| * | migrate add impl items to the new editing API | Aleksey Kladov | 2019-09-28 | 1 | -1/+7 |
| | | |||||
* | | Added test for check doc strings in crates. | Alexander Andreev | 2019-09-30 | 1 | -0/+2 |
|/ | | | | #1856 | ||||
* | Document AssistBuilder | Aleksey Kladov | 2019-07-29 | 1 | -4/+11 |
| | | | | closes #1603 | ||||
* | streamline API | Aleksey Kladov | 2019-07-21 | 1 | -2/+3 |
| | |||||
* | rename range -> text_range | Aleksey Kladov | 2019-07-20 | 1 | -1/+1 |
| |