Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Smarter introduce variable | Aleksey Kladov | 2020-06-25 | 1 | -8/+49 | |
| | | | | | | | | Use field init shorthand | |||||
* | | Use only one code-path for parsing fixtures | Aleksey Kladov | 2020-06-23 | 1 | -6/+7 | |
| | | | | | | | | | | This removes leading newlines everywhere, shifting all ranges in tests by one | |||||
* | | Centralize fixture parsing for assists | Aleksey Kladov | 2020-06-23 | 6 | -54/+47 | |
| | | ||||||
* | | More principled indentation trimming in fixtures | Aleksey Kladov | 2020-06-23 | 3 | -123/+127 | |
| | | ||||||
* | | New VFS | Aleksey Kladov | 2020-06-23 | 1 | -10/+3 | |
| | | ||||||
* | | Fix panic in split and merge import assists | Laurențiu Nicola | 2020-06-23 | 2 | -1/+21 | |
| | | ||||||
* | | Remove RelativePathBuf from fixture | Aleksey Kladov | 2020-06-22 | 3 | -3/+3 | |
|/ | | | | | The paths in fixture are not really relative (the default one is `/main.rs`), so it doesn't make sense to use `RelativePathBuf` here. | |||||
* | Merge #4878 | bors[bot] | 2020-06-16 | 4 | -59/+249 | |
|\ | | | | | | | | | | | | | | | 4878: Make "Replace qualified name with use" replace *all* mentions of the path r=matklad a=jonas-schievink Fixes https://github.com/rust-analyzer/rust-analyzer/issues/4836 Co-authored-by: Jonas Schievink <[email protected]> | |||||
| * | Operate only on AST paths instead of HIR | Jonas Schievink | 2020-06-15 | 1 | -30/+36 | |
| | | ||||||
| * | Simplify | Jonas Schievink | 2020-06-15 | 1 | -13/+6 | |
| | | ||||||
| * | It's fookin' raw | Jonas Schievink | 2020-06-15 | 1 | -48/+48 | |
| | | ||||||
| * | Shorten *all* qualified paths when adding use | Jonas Schievink | 2020-06-13 | 2 | -11/+192 | |
| | | ||||||
| * | Expose `find_insert_use_container` | Jonas Schievink | 2020-06-13 | 2 | -8/+18 | |
| | | ||||||
* | | Merge #4889 | bors[bot] | 2020-06-15 | 1 | -0/+2 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4889: Deprecate hir::Path::from_ast r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | | Deprecate hir::Path::from_ast | Aleksey Kladov | 2020-06-15 | 1 | -0/+2 | |
| |/ | ||||||
* | | fill_match_arms bind pattern implementation | Toby Dimmick | 2020-06-14 | 1 | -2/+14 | |
| | | ||||||
* | | fill_match_arms bind pattern test | Toby Dimmick | 2020-06-14 | 1 | -0/+34 | |
|/ | ||||||
* | Respect casing when searching for imports | Jonas Schievink | 2020-06-10 | 1 | -0/+25 | |
| | ||||||
* | Add test for macro generated items | Jonas Schievink | 2020-06-10 | 1 | -0/+31 | |
| | ||||||
* | ImportsLocator: use ImportMap for non-local crates | Jonas Schievink | 2020-06-10 | 1 | -1/+46 | |
| | ||||||
* | Use correct indent when replacing with match | Aleksey Kladov | 2020-06-09 | 2 | -3/+36 | |
| | ||||||
* | Unwrap block works with match arms | Aleksey Kladov | 2020-06-09 | 1 | -4/+40 | |
| | ||||||
* | Simplify unwrapping of blocks | Aleksey Kladov | 2020-06-09 | 1 | -79/+49 | |
| | ||||||
* | Simplify API | Aleksey Kladov | 2020-06-08 | 4 | -107/+56 | |
| | ||||||
* | Merge #4576 | bors[bot] | 2020-06-08 | 4 | -0/+403 | |
|\ | | | | | | | | | | | | | | | | | | | 4576: Add implementation of extract struct from enum variant r=matklad a=mcrakhman Hi guys! I implemented the extraction functionality including modifying multiple files. The only thing I didn't change the cursor position. I've done it with a previous API, but now snippets have been introduced and I need to figure out how to do it. Please bear in mind that I am a newcomer in the rust-analyzer (and also Rust) world, so I tried to implement the feature to the best of my knowledge, but the API is very new to me, so I am very welcome to introducing changes etc. Co-authored-by: Mikhail Rakhmanov <[email protected]> | |||||
| * | Fix review comments | Mikhail Rakhmanov | 2020-06-05 | 2 | -33/+19 | |
| | | ||||||
| * | Remove unnecessary return | Mikhail Rakhmanov | 2020-06-05 | 1 | -2/+2 | |
| | | ||||||
| * | Remove AsName import | Mikhail Rakhmanov | 2020-06-04 | 2 | -5/+19 | |
| | | ||||||
| * | Fixed tests | Mikhail Rakhmanov | 2020-06-03 | 3 | -10/+28 | |
| | | ||||||
| * | Merge branch 'master' into assists_extract_enum | Mikhail Rakhmanov | 2020-06-03 | 5 | -3/+352 | |
| |\ | ||||||
| * | | Fix incorrect behaviour if not resolved | Mikhail Rakhmanov | 2020-06-03 | 1 | -0/+1 | |
| | | | ||||||
| * | | Further refactoring under review comments | Mikhail Rakhmanov | 2020-05-24 | 1 | -7/+3 | |
| | | | ||||||
| * | | Remove unnecessary set_file and change variable positions for better readability | Mikhail Rakhmanov | 2020-05-23 | 1 | -2/+1 | |
| | | | ||||||
| * | | Remove unwraps where possible | Mikhail Rakhmanov | 2020-05-23 | 1 | -22/+11 | |
| | | | ||||||
| * | | Further review fixes | Mikhail Rakhmanov | 2020-05-23 | 2 | -12/+9 | |
| | | | ||||||
| * | | Use default instead of new in AssistDirector | Mikhail Rakhmanov | 2020-05-23 | 1 | -5/+7 | |
| | | | ||||||
| * | | Better naming and fix some review comments | Mikhail Rakhmanov | 2020-05-23 | 2 | -15/+14 | |
| | | | ||||||
| * | | More formatting | Mikhail Rakhmanov | 2020-05-22 | 1 | -3/+1 | |
| | | | ||||||
| * | | Refactor AssistDirector | Mikhail Rakhmanov | 2020-05-22 | 1 | -6/+4 | |
| | | | ||||||
| * | | Formatting and remove unused imports | Mikhail Rakhmanov | 2020-05-22 | 2 | -16/+21 | |
| | | | ||||||
| * | | Add preliminary implementation of extract struct from enum variant | Mikhail Rakhmanov | 2020-05-22 | 4 | -1/+402 | |
| | | | ||||||
* | | | Fix type parameter defaults | Florian Diebold | 2020-06-05 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | They should not be applied in expression or pattern contexts, unless there are other explicitly given type args. | |||||
* | | | introduce_named_lifetime assist wasn't applicable when type parameter | Jess Balint | 2020-06-04 | 1 | -2/+17 | |
| |/ |/| | | | | | | | | | followed anonymous lifetime token (fixes #4684) | |||||
* | | Rename assist | Aleksey Kladov | 2020-06-01 | 3 | -52/+49 | |
| | | ||||||
* | | Cleanup imports | Aleksey Kladov | 2020-06-01 | 1 | -6/+9 | |
| | | ||||||
* | | Merge #4664 | bors[bot] | 2020-05-31 | 2 | -2/+21 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | 4664: Generate feature documentation from code r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | | Don't require module docs for Features and Assists | Aleksey Kladov | 2020-05-31 | 2 | -2/+21 | |
| | | | ||||||
* | | | Merge #4562 | bors[bot] | 2020-05-30 | 3 | -0/+330 | |
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | 4562: Assist: replace anonymous lifetime with a named one r=matklad a=jbalint (fixes #4523) Co-authored-by: Jess Balint <[email protected]> | |||||
| * | | add support for naming anon lifetimes in function return type | Jess Balint | 2020-05-28 | 1 | -50/+210 | |
| | | | ||||||
| * | | tweak syntax | Jess Balint | 2020-05-23 | 1 | -49/+40 | |
| | | |