Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Be more precise with function signatures | Jeremy Kolb | 2019-10-27 | 1 | -8/+32 | |
| | | | | | | | | Fixes #2093 | |||||
* | | Preserve whitespace at the end of doc comments | Jeremy Kolb | 2019-10-27 | 2 | -4/+27 | |
| | | | | | | | | | | | | | | | | Whitespace can have special meaning in markdown. For instance ending a line with three spaces will render a new line. Note that this behavior diverges from RLS. Fixes #1997 | |||||
* | | 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. | |||||
* | | extend selection in trait bound extends to plus | Alexander Elís Ebenesersson | 2019-10-27 | 1 | -10/+72 | |
|/ | | | | | | When multiple traits bounds are present, expanded selection from a single trait bound will include the nearest plus sign (and whitespace after) before including the whole trait bound. | |||||
* | remove relative_path_buf workaround | Aleksey Kladov | 2019-10-27 | 2 | -14/+4 | |
| | | | | The upstream problem was fixed with the change to 1.0 | |||||
* | 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 | 4 | -9/+68 | |
| | ||||||
* | avoid TextEditorBuilder for simple edits | Aleksey Kladov | 2019-10-26 | 5 | -37/+21 | |
| | ||||||
* | check style for assist docs | Aleksey Kladov | 2019-10-26 | 8 | -11/+106 | |
| | ||||||
* | use correct spacing for enum pattern | Aleksey Kladov | 2019-10-26 | 3 | -5/+5 | |
| | ||||||
* | 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 | |
| | ||||||
* | Upgrade Chalk (without using its dyn/impl Trait support) | Florian Diebold | 2019-10-26 | 3 | -46/+76 | |
| | ||||||
* | generate more assists docs | Aleksey Kladov | 2019-10-25 | 7 | -20/+262 | |
| | ||||||
* | Merge #2069 | bors[bot] | 2019-10-25 | 4 | -24/+73 | |
|\ | | | | | | | | | | | | | | | 2069: auto-generate assists docs and tests r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | auto-generate assists docs and tests | Aleksey Kladov | 2019-10-25 | 4 | -24/+73 | |
| | | ||||||
* | | Merge #2066 | bors[bot] | 2019-10-25 | 6 | -278/+358 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | 2066: insert space after `->` r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | | disable the new typing handler for `->` | Aleksey Kladov | 2019-10-25 | 1 | -0/+9 | |
| | | | | | | | | | | | | It doesn't actually work with LSP | |||||
| * | | insert space after `->` | Aleksey Kladov | 2019-10-25 | 3 | -112/+119 | |
| | | | ||||||
| * | | refactor typing_handlers | Aleksey Kladov | 2019-10-25 | 2 | -35/+41 | |
| | | | ||||||
| * | | introduce SingleFileChange | Aleksey Kladov | 2019-10-25 | 3 | -35/+64 | |
| | | | ||||||
| * | | move source change to a dedicated file | Aleksey Kladov | 2019-10-25 | 2 | -95/+104 | |
| | | | ||||||
| * | | make typing infra slightly more extensible | Aleksey Kladov | 2019-10-25 | 3 | -54/+74 | |
| |/ | ||||||
* / | Specify working chalk revisions in manifest | Laurențiu Nicola | 2019-10-25 | 1 | -3/+3 | |
|/ | ||||||
* | document feature flags | Aleksey Kladov | 2019-10-25 | 1 | -5/+9 | |
| | ||||||
* | bump insta | kjeremy | 2019-10-24 | 2 | -2/+2 | |
| | ||||||
* | Merge #2059 | bors[bot] | 2019-10-24 | 5 | -35/+135 | |
|\ | | | | | | | | | | | | | | | 2059: for highlighting, search only the current file r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | for highlighting, search only the current file | Aleksey Kladov | 2019-10-24 | 5 | -29/+112 | |
| | | ||||||
| * | add search scope stuct | Aleksey Kladov | 2019-10-24 | 1 | -13/+30 | |
| | | ||||||
* | | add --with-deps option to analysis-stats | Aleksey Kladov | 2019-10-24 | 2 | -8/+10 | |
|/ | ||||||
* | add some profiling calls | Aleksey Kladov | 2019-10-24 | 3 | -0/+10 | |
| | ||||||
* | don't die if a sync task panics | Aleksey Kladov | 2019-10-24 | 1 | -6/+10 | |
| | ||||||
* | show unaccounted for time in profiling | Aleksey Kladov | 2019-10-24 | 1 | -3/+20 | |
| |