aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add Loc2IdMapAleksey Kladov2018-11-186-0/+84
|
* Merge #215bors[bot]2018-11-173-27/+16
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | 215: Add Travis Windows build r=matklad a=phansch This adds the Windows build to Travis. I had to use the `dos2unix` utility on the parser directory to fix some incorrect line endings. I'm not sure where they are coming from but I guess git is converting them automatically when cloning on Windows. Closes #139 Co-authored-by: Philipp Hansch <[email protected]>
| * Remove AppVeyorPhilipp Hansch2018-11-072-21/+0
| |
| * Only build windows on master and allow failurePhilipp Hansch2018-11-071-5/+6
| | | | | | | | | | The Windows build is much slower than Linux, so we only build it on master and make the build status not depend on it finishing up.
| * Add Travis Windows buildPhilipp Hansch2018-11-071-6/+15
| |
* | Merge #227bors[bot]2018-11-162-30/+208
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | 227: Correctly map between UTF-8 and UTF-16 positions r=aochagavia a=aochagavia Fixes #202 Co-authored-by: Adolfo Ochagavía <[email protected]> Co-authored-by: Adolfo Ochagavía <[email protected]>
| * | cargo formatAdolfo Ochagavía2018-11-161-14/+98
| | |
| * | Rename col to col_utf16Adolfo Ochagavía2018-11-162-23/+28
| | |
| * | Support UTF-16 chars in LineIndexAdolfo Ochagavía2018-11-162-108/+197
| | |
* | | Merge #203bors[bot]2018-11-151-0/+77
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | 203: Add roadmap r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> Co-authored-by: Adolfo Ochagavía <[email protected]>
| * | Clarifications and formattingAdolfo Ochagavía2018-11-061-22/+25
| | |
| * | Add roadmapAleksey Kladov2018-11-061-0/+74
| | |
* | | Merge #226bors[bot]2018-11-1215-507/+1141
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 226: Validate byte literals and byte strings r=aochagavia a=aochagavia Co-authored-by: Adolfo Ochagavía <[email protected]>
| * | | Split string lexing and run rustfmtAdolfo Ochagavía2018-11-1110-521/+548
| | | |
| * | | Validate byte string literalsAdolfo Ochagavía2018-11-118-24/+305
| | | |
| * | | Add validator for byteAdolfo Ochagavía2018-11-118-90/+416
|/ / /
* | | Fix typosAdolfo Ochagavía2018-11-112-2/+2
| | |
* | | Merge #222bors[bot]2018-11-109-274/+621
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 222: Validate string literals r=aochagavia a=aochagavia Related: #6 (some validators are still missing), fixes #27 Co-authored-by: Adolfo Ochagavía <[email protected]>
| * | | Validate string literalsAdolfo Ochagavía2018-11-099-274/+621
|/ / /
* | | Merge #221bors[bot]2018-11-091-2/+2
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 221: Fix on enter r=matklad a=aochagavia Fixes #219 Co-authored-by: Adolfo Ochagavía <[email protected]>
| * | | Fix on enterAdolfo Ochagavía2018-11-091-2/+2
|/ / /
* | | Fix the testAleksey Kladov2018-11-081-1/+1
| | |
* | | workspace-symbols function for EmacsAleksey Kladov2018-11-084-12/+43
| | |
* | | eglot worksapce symbolAleksey Kladov2018-11-082-1/+60
| | |
* | | Merge #217bors[bot]2018-11-073-5/+66
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 217: Complete paths in use trees r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | | Complete paths in use treesAleksey Kladov2018-11-073-5/+66
|/ / /
* | | Do more work in classifyAleksey Kladov2018-11-071-38/+30
| | |
* | | Use cached module scopes for completionAleksey Kladov2018-11-075-51/+71
| | |
* | | split completion modAleksey Kladov2018-11-072-272/+339
| | |
* | | reorganize completionAleksey Kladov2018-11-072-88/+75
| | |
* | | rename module sourceAleksey Kladov2018-11-074-32/+32
| | |
* | | rename ROOT -> SOURCE_FILEAleksey Kladov2018-11-07185-236/+235
| | |
* | | Rename File -> SourceFileNodeAleksey Kladov2018-11-0723-102/+117
| | |
* | | Cargo updateJeremy A. Kolb2018-11-072-41/+38
| | |
* | | Rustfmt to pass CIJeremy A. Kolb2018-11-073-6/+12
| | |
* | | Remove unused variableJeremy A. Kolb2018-11-071-1/+0
| | |
* | | Show documentation for hover requestsJeremy A. Kolb2018-11-076-4/+71
| | |
* | | Add some more DocCommentsOwnerJeremy A. Kolb2018-11-072-2/+14
| | |
* | | Merge #207bors[bot]2018-11-078-13/+235
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 207: Finish implementing char validation r=aochagavia a=aochagavia The only thing missing right now are good integration tests (and maybe more descriptive error messages) Co-authored-by: Adolfo Ochagavía <[email protected]>
| * | | Fix backslash escapeAdolfo Ochagavía2018-11-071-2/+4
| | | |
| * | | Use ArrayString instead of hand rolled data structureAdolfo Ochagavía2018-11-075-39/+6
| | | |
| * | | cargo formatAdolfo Ochagavía2018-11-072-30/+39
| | | |
| * | | Add lots of testsAdolfo Ochagavía2018-11-073-6/+125
| | | |
| * | | Store hex digits in a stack-allocated bufferAdolfo Ochagavía2018-11-072-5/+45
| | | |
| * | | Finish implementing char validationAdolfo Ochagavía2018-11-063-8/+93
| |/ /
* | | Merge #213bors[bot]2018-11-061-0/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 213: remove the last changing file from cache r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | | remove the last changing file from cacheAleksey Kladov2018-11-061-0/+1
|/ / /
* | | Merge #212bors[bot]2018-11-061-1/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 212: evitct more stuff from cache r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | | evitct more stuff from cacheAleksey Kladov2018-11-061-1/+1
|/ / /
* | | Merge #211bors[bot]2018-11-064-206/+969
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | 211: ra_syntax::File is just RootNode r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>