aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Resolve local names firstJeremy A. Kolb2018-10-063-15/+14
|
* WIP: This doesn't currently work but I also don't think it's the right ↵Jeremy A. Kolb2018-10-053-3/+25
| | | | abstraction
* Add resolve_local_name to resolve names in a function scopeJeremy A. Kolb2018-10-051-2/+79
|
* Merge #94bors[bot]2018-10-041-4/+32
|\ | | | | | | | | | | | | | | 94: Extend comments by single word first r=matklad a=kjeremy Fixes #88 Co-authored-by: Jeremy A. Kolb <[email protected]>
| * Pull casts out of TextUnitJeremy A. Kolb2018-10-041-4/+4
| |
| * Simplify extend_single_word_in_commentJeremy A. Kolb2018-10-041-15/+11
| |
| * Extend comments by single word firstJeremy A. Kolb2018-10-031-4/+36
| | | | | | | | Fixes #88
* | Merge #93bors[bot]2018-10-043-12/+59
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 93: Support leading pipe in match arms r=matklad a=DJMcNab This adds support for match arms of the form: ```rust <...> | X | Y => <...>, | X => <...>, | 1..2 => <...>, etc ``` # Implementation discussion This just naïvely 'eats' a leading pipe if one is available. The equivalent line in the reference `libsyntax` is in [`parse_arm`](https://github.com/rust-lang/rust/blob/441519536c8bd138e8c651743249acd6814747a1/src/libsyntax/parse/parser.rs#L3552). As noted in the comment linked above, this feature was formally introduced as a result of rust-lang/rfcs#1925. This feature is in active use in the [`rust-analyzer` codebase](https://github.com/matklad/rust-analyzer/blob/c87fcb4ea5874a7307c1d9d1192e923f3ae2c922/crates/ra_syntax/src/syntax_kinds/generated.rs#L231) I have added some tests for this feature, but maybe more would be required EDIT: Always looking for feedback - is this PR description over-engineered? Co-authored-by: Daniel McNab <[email protected]>
| * Support leading pipe in match armsDaniel McNab2018-10-033-12/+59
| |
* | Merge #92bors[bot]2018-10-021-22/+22
|\ \ | | | | | | | | | | | | | | | | | | | | | 92: cargo update r=matklad a=kjeremy Co-authored-by: Jeremy A. Kolb <[email protected]>
| * | cargo updateJeremy A. Kolb2018-10-021-22/+22
|/ /
* | Merge pull request #91 from kjeremy/ignore-ideaAleksey Kladov2018-10-021-0/+1
|\ \ | | | | | | Ignore .idea/
| * | Ignore .idea/Jeremy A. Kolb2018-10-021-0/+1
|/ /
* | Merge #90bors[bot]2018-10-0215-80/+70
|\ \ | | | | | | | | | | | | | | | | | | | | | 90: Inherent traversal r=matklad a=matklad bors r+ Co-authored-by: Aleksey Kladov <[email protected]>
| * | Make siblings an inherent methodAleksey Kladov2018-10-026-34/+30
| | |
| * | make ancestors and descendants inherentAleksey Kladov2018-10-0214-46/+40
| | |
| * | use aliasesAleksey Kladov2018-10-021-2/+2
|/ /
* | Merge #85bors[bot]2018-10-0213-532/+150
|\ \ | |/ |/| | | | | | | | | | | 85: start moving syntax tree to a separate crate r=matklad a=matklad WIP Co-authored-by: Aleksey Kladov <[email protected]>
| * Move to rowan for syntax tree implAleksey Kladov2018-10-0213-532/+150
|/
* Merge #83bors[bot]2018-09-292-4/+23
|\ | | | | | | | | | | | | | | 83: Add a setting to disable custom syntax highlighting r=matklad a=aochagavia Co-authored-by: Adolfo Ochagavía <[email protected]>
| * Add a setting to disable custom syntax highlightingAdolfo Ochagavía2018-09-292-4/+23
| |
* | fix code actionsAleksey Kladov2018-09-291-1/+1
|/
* support 2018 pathsAleksey Kladov2018-09-293-3/+21
|
* Merge #81bors[bot]2018-09-265-2/+148
|\ | | | | | | | | | | | | | | 81: [WIP] Reject impl keyword inside impl header r=matklad a=csmoe Closes #77 Co-authored-by: csmoe <[email protected]>
| * generate testsuite for impl_typecsmoe2018-09-265-13/+94
| |
| * parse impl typecsmoe2018-09-253-57/+44
| |
| * reject impl keyword in impl headercsmoe2018-09-241-2/+10
| |
| * add test for impl recoverycsmoe2018-09-242-0/+70
| |
* | Merge #79bors[bot]2018-09-259-48/+236
|\ \ | |/ |/| | | | | | | | | | | | | | | 79: Implement Folding Ranges r=matklad a=kjeremy Implements folding ranges for comments and imports. Bumps LSP to 3.13 Co-authored-by: Jeremy A. Kolb <[email protected]>
| * Unit TestsJeremy A. Kolb2018-09-241-0/+56
| |
| * Split folding ranges into editor and lsp partsJeremy A. Kolb2018-09-244-77/+114
| |
| * Implement folding rangesJeremy A. Kolb2018-09-232-1/+90
| |
| * Support LSP 3.13Jeremy A. Kolb2018-09-235-45/+51
| |
* | Merge #78bors[bot]2018-09-211-4/+0
|\ \ | | | | | | | | | | | | | | | | | | | | | 78: Remove undefined command in code/package.json r=matklad a=ekrctb Co-authored-by: ekrctb <[email protected]>
| * | Remove undefined commandekrctb2018-09-211-4/+0
|/ /
* / Use more neutral language in the READMEAleksey Kladov2018-09-211-8/+7
|/
* Merge #75bors[bot]2018-09-193-10/+9
|\ | | | | | | | | | | | | | | 75: libsyntax2 -> rust-analyzer r=matklad a=kjeremy Change a few `libsyntax2` to `rust-analyzer` Co-authored-by: Jeremy A. Kolb <[email protected]>
| * libsyntax2 -> rust-analyzerJeremy A. Kolb2018-09-183-10/+9
| |
* | prefer lifetimes in extend selectionAleksey Kladov2018-09-191-1/+13
| |
* | cleanup commentAleksey Kladov2018-09-181-3/+4
| |
* | commit lockAleksey Kladov2018-09-182-1/+1285
| |
* | Add emacs function for extend shirnk selectionAleksey Kladov2018-09-184-3/+123
|/
* eprintlnAleksey Kladov2018-09-161-7/+37
|
* goto super places cursor on modAleksey Kladov2018-09-161-0/+1
|
* tweak readmeAleksey Kladov2018-09-162-57/+135
|
* Update readmeAleksey Kladov2018-09-161-7/+47
|
* rename all thingsAleksey Kladov2018-09-16478-204/+219
|
* fix derecated callAleksey Kladov2018-09-161-2/+2
|
* fix installation for windowsAleksey Kladov2018-09-161-3/+11
|
* get rid of commandspeckAleksey Kladov2018-09-162-22/+21
|