Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Support paths other than "Some". | krk | 2019-11-01 | 1 | -8/+56 | |
| | ||||||
* | Remove variable pat. | krk | 2019-11-01 | 1 | -2/+1 | |
| | ||||||
* | Handle IfLet in convert_to_guarded_return. | krk | 2019-10-31 | 1 | -28/+155 | |
| | ||||||
* | Some clippy fixes | kjeremy | 2019-10-30 | 3 | -6/+4 | |
| | ||||||
* | Don't add a space after the opening brace in autoimport | Florian Diebold | 2019-10-29 | 1 | -6/+6 | |
| | ||||||
* | Fix autoimport not choosing the deepest use tree in some situations | Florian Diebold | 2019-10-28 | 1 | -6/+37 | |
| | ||||||
* | Merge #2099 | bors[bot] | 2019-10-27 | 1 | -4/+35 | |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2099: Fix panic on raw string assist r=matklad a=aee11 Strings that do not contain two quotation marks would cause a slice indexing panic because `find_usual_string_range` would return a range that only contained a single quotation mark. Panic example: ``` fn main() { let s = "<|> } ``` I noticed a lot of panics from the `make_raw_string` assist while working on another issue today. Co-authored-by: Alexander Elís Ebenesersson <[email protected]> | |||||
| * | Fix panic on raw string assist | Alexander Elís Ebenesersson | 2019-10-27 | 1 | -4/+35 | |
| | | | | | | | | | | | | | | | | Strings that do not contain two quotation marks would cause a slice indexing panic because code was assuming `find_usual_string_range` would return a string with two quotes, but it would incorrectly also return text ranges containing only a single quote. | |||||
* | | further simplify assists | Aleksey Kladov | 2019-10-27 | 2 | -82/+37 | |
| | | ||||||
* | | move all assists to use generated docs | Aleksey Kladov | 2019-10-27 | 2 | -5/+31 | |
| | | ||||||
* | | simplify AssistCtx API | Aleksey Kladov | 2019-10-27 | 22 | -160/+105 | |
| | | | | | | | | | | We never actually use ability to create multiple actions out of a single context | |||||
* | | simplify | Aleksey Kladov | 2019-10-27 | 1 | -30/+13 | |
| | | ||||||
* | | Merge #2090 | bors[bot] | 2019-10-27 | 2 | -101/+101 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | 2090: move public stuff to top r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | | move public stuff to top | Aleksey Kladov | 2019-10-27 | 1 | -26/+26 | |
| | | | ||||||
| * | | rename auto_import -> add_import | Aleksey Kladov | 2019-10-27 | 2 | -75/+75 | |
| |/ | | | | | | | We are long way from auto imports at the moment | |||||
* | | use new api for flip_trait_bound assist | Aleksey Kladov | 2019-10-27 | 3 | -12/+46 | |
| | | ||||||
* | | Add tests for the trait bound flip assist. | Wesley Norris | 2019-10-27 | 1 | -0/+76 | |
| | | | | | | | | Co-authored-by: vlthr <[email protected]> | |||||
* | | Fixes #2054. | Wesley Norris | 2019-10-27 | 2 | -0/+34 | |
|/ | | | | This adds the `flip_trait_bound` assist which allows for the swapping of two trait bounds in a trait list that are next to each other. | |||||
* | document almost all assists | Aleksey Kladov | 2019-10-27 | 5 | -9/+240 | |
| | ||||||
* | lightly document assist_ctx module | Aleksey Kladov | 2019-10-27 | 1 | -1/+1 | |
| | ||||||
* | use more consistent naming | Aleksey Kladov | 2019-10-27 | 17 | -18/+18 | |
| | | | | | 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 | 4 | -15/+12 | |
| | ||||||
* | raw string assists work in macros | Aleksey Kladov | 2019-10-27 | 1 | -49/+58 | |
| | ||||||
* | document some more assists | Aleksey Kladov | 2019-10-27 | 4 | -6/+186 | |
| | ||||||
* | use unicode bar for drawing the cursor | Aleksey Kladov | 2019-10-26 | 2 | -2/+2 | |
| | ||||||
* | support range selection in assist docs | Aleksey Kladov | 2019-10-26 | 3 | -6/+37 | |
| | ||||||
* | check style for assist docs | Aleksey Kladov | 2019-10-26 | 8 | -11/+106 | |
| | ||||||
* | use correct spacing for enum pattern | Aleksey Kladov | 2019-10-26 | 2 | -4/+4 | |
| | ||||||
* | document a couple of assists | Aleksey Kladov | 2019-10-26 | 3 | -2/+74 | |
| | ||||||
* | add blank lines for readability | Aleksey Kladov | 2019-10-26 | 5 | -0/+10 | |
| | ||||||
* | generate more assists docs | Aleksey Kladov | 2019-10-25 | 7 | -20/+262 | |
| | ||||||
* | auto-generate assists docs and tests | Aleksey Kladov | 2019-10-25 | 4 | -24/+73 | |
| | ||||||
* | xtask: move codegen to a module | Aleksey Kladov | 2019-10-23 | 1 | -2/+2 | |
| | ||||||
* | minor cleanup | Aleksey Kladov | 2019-10-23 | 1 | -18/+36 | |
| | ||||||
* | Adds "replace with guarded return" assist | Mikhail Modin | 2019-10-20 | 2 | -0/+278 | |
| | ||||||
* | Merge #1999 | bors[bot] | 2019-10-14 | 1 | -1/+1 | |
|\ | | | | | | | | | | | | | | | 1999: Simplify find().is_some() to any() r=matklad a=kjeremy Co-authored-by: kjeremy <[email protected]> | |||||
| * | use any() | kjeremy | 2019-10-11 | 1 | -1/+1 | |
| | | ||||||
* | | add syntax-tree based indents | Aleksey Kladov | 2019-10-12 | 2 | -7/+12 | |
|/ | ||||||
* | Merge #1922 | bors[bot] | 2019-10-08 | 1 | -18/+92 | |
|\ | | | | | | | | | | | | | | | 1922: feat(assists): Make raw string unescaped r=matklad a=Geobert Last piece of https://github.com/rust-analyzer/rust-analyzer/issues/1730 Co-authored-by: Geobert Quach <[email protected]> | |||||
| * | feat(assists): Address some PR comments | Geobert Quach | 2019-10-04 | 1 | -25/+24 | |
| | | ||||||
| * | feat(assists): Even smarter with hashes | Geobert Quach | 2019-10-01 | 1 | -12/+44 | |
| | | | | | | | | Count `"#*` streak only, extract the counting in a function, unit test this function | |||||
| * | feat(assists): Be smart about hashes | Geobert Quach | 2019-09-30 | 1 | -1/+36 | |
| | | | | | | | | Add max_hashes_streak + 1 hashes to the raw string | |||||
| * | feat(assists): Keep only one version of make_raw_string | Geobert Quach | 2019-09-29 | 2 | -83/+13 | |
| | | ||||||
| * | feat(assists): Make raw string unescaped | Geobert Quach | 2019-09-26 | 2 | -1/+78 | |
| | | ||||||
* | | remove `visitor` module | Ekaterina Babshukova | 2019-10-05 | 1 | -3/+3 | |
| | | ||||||
* | | [#1807] Refactor file structure | Lúcás Meier | 2019-10-04 | 1 | -33/+33 | |
| | | | | | | | | | | Use the more conventional way of importing the ast types, and put the assist at the top of the file. | |||||
* | | Fix formatting | Lúcás Meier | 2019-10-04 | 1 | -22/+9 | |
| | | ||||||
* | | Create an assist for applying De Morgan's law | Lúcás Meier | 2019-10-03 | 1 | -0/+115 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1807 This assist can transform expressions of the form `!x || !y` into `!(x && y)`. This also works with `&&`. This assist will only trigger if the cursor is on the central logical operator. The main limitation of this current implementation is that both operands need to be an explicit negation, either of the form `!x`, or `x != y`. More operands could be accepted, but this would complicate the implementation quite a bit. | |||||
* | | WIP: Add demorgan application with naive negation | Lúcás Meier | 2019-10-03 | 1 | -0/+2 | |
| | | ||||||
* | | Merge branch 'master' into feature/issue/1856 | Alexander Andreev | 2019-09-30 | 6 | -277/+27 | |
|\ \ | | | | | | | | | | | | | # Conflicts: # crates/ra_assists/src/ast_editor.rs |