aboutsummaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* rewording and typo fixAdam Bratschi-Kaye2020-02-221-1/+1
| | | Co-Authored-By: Laurențiu Nicola <[email protected]>
* add ssr docadamrk2020-02-221-0/+15
|
* Fix a typoKirill Bulatov2020-02-221-1/+1
|
* One more tiny doc fixKirill Bulatov2020-02-221-1/+1
|
* Code review fixesKirill Bulatov2020-02-221-5/+5
| | | | Co-Authored-By: Florian Diebold <[email protected]> Co-Authored-By: Laurențiu Nicola <[email protected]>
* Add inlay hints documentationKirill Bulatov2020-02-221-0/+25
|
* update imageAndrew Blakey2020-02-211-2/+1
|
* update docsAndrew Blakey2020-02-212-24/+24
|
* Add document for `Show RA Version`Edwin Cheng2020-02-211-0/+4
|
* Add `remove_mut` assistAleksey Kladov2020-02-191-0/+16
|
* Fix dev guide broken linksLaurențiu Nicola2020-02-181-12/+12
|
* Rename config value for server PathAleksey Kladov2020-02-182-3/+3
|
* Rename the binary to rust-analyzerAleksey Kladov2020-02-184-24/+24
|
* Fix typoAkihiro Takai2020-02-181-1/+1
|
* Reword the docsKirill Bulatov2020-02-171-1/+1
| | | Co-Authored-By: Laurențiu Nicola <[email protected]>
* Install rust-src when it is not foundKirill Bulatov2020-02-171-1/+3
|
* Replace ra_cli mentionsLaurențiu Nicola2020-02-172-8/+4
|
* Fix RA_PROFILE typo in docsLaurențiu Nicola2020-02-171-2/+2
|
* Mention rust-srcAleksey Kladov2020-02-171-0/+7
|
* docs: Fix grammar mistakesVeetaha2020-02-161-4/+4
|
* Fix typoVeetaha2020-02-161-1/+1
| | | Co-Authored-By: Laurențiu Nicola <[email protected]>
* Remove ptrace noteVeetaha2020-02-161-1/+0
| | | Co-Authored-By: Laurențiu Nicola <[email protected]>
* Add more verbose descriptionVeetaha2020-02-161-1/+1
| | | Co-Authored-By: Laurențiu Nicola <[email protected]>
* Add the articleVeetaha2020-02-161-1/+1
| | | Co-Authored-By: Laurențiu Nicola <[email protected]>
* Reworded abitVeetaha2020-02-161-1/+1
| | | Co-Authored-By: Laurențiu Nicola <[email protected]>
* Add an articleVeetaha2020-02-161-1/+1
| | | Co-Authored-By: Laurențiu Nicola <[email protected]>
* Migrate from 'npm i' to 'npm install'Veetaha2020-02-161-1/+1
| | | Co-Authored-By: Laurențiu Nicola <[email protected]>
* Make Rust Great AgainVeetaha2020-02-161-1/+1
| | | Co-Authored-By: Laurențiu Nicola <[email protected]>
* Apply better wording as per lnicolaVeetaha2020-02-161-1/+1
| | | Co-Authored-By: Laurențiu Nicola <[email protected]>
* Add the articleVeetaha2020-02-161-1/+1
| | | Co-Authored-By: Laurențiu Nicola <[email protected]>
* docs: fix typoVeetaha2020-02-161-1/+1
|
* docs: update debugging.md with the freshest VSCode debugging informationVeetaha2020-02-161-18/+43
|
* docs: remove obsolescence notice in debugging.mdVeetaha2020-02-161-2/+0
|
* vscode: updated user docs vscode updates sectionVeetaha2020-02-161-4/+3
|
* TypoVeetaha2020-02-141-1/+1
| | | typo
* Ensure that the manual is self-improvingAleksey Kladov2020-02-141-0/+3
|
* Start manualAleksey Kladov2020-02-142-280/+152
|
* Move build prerequisites into build sectiondvermd2020-02-101-4/+4
|
* docs: quick fix inner link in docsVeetaha2020-02-091-1/+2
|
* docs: more documentation on prebuilt binaries all-editors-wiseVeetaha2020-02-091-22/+40
|
* docs: Freshen docs for prebuilt binaries and raLspServer settingVeetaha2020-02-092-5/+23
|
* Merge #3053bors[bot]2020-02-091-1/+33
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3053: Feature: downloading lsp server from GitHub r=matklad a=Veetaha This is currently very WIP, I may need to change this and that, add "download language server command", logging stuff (for future bug reports), etc., but it already works. Also didn't test this on windows yet and mac (don't have the latter) The quirks: * Downloaded binary doesn't have executable permissions by default, that's why we ~~`chmod 111`~~ (**[UPD]** `chmod 755` as per @lnicola [suggestion](https://github.com/rust-analyzer/rust-analyzer/pull/3053#discussion_r376694456)) for it. * To remove installed binary run `rm /${HOME}/.config/Code/User/globalStorage/matklad.rust-analyzer/ra_lsp_server-linux`, ~~note that `-f` flag is necessary, because of `111` permissions (I think this should be changed)~~ (**[UPD]** --force is no longer needed due to 755 permissions). I also tried to keep things simple and not to use too many dependencies, all the ones added have 0 dependencies, (`ts-not-nil` is my personal npm package, that imitates `unwrap()` in TypeScript) **[UPD]** I reduced throttle latency of progress indicator to 200ms for smoother UX // TODO: - [x] ~~Add `Rust Analyzer: Download latest language server` vscode command.~~ **[UPD]**: having reviewed the code and estimated available options I concluded that this feature requires too many code changes, I'd like to extract this into a separate PR after we merge this one. - [x] Add some logging for future debugging - [x] ~~Gracefully handle the case when language server is not available (e.g. no internet connection, user explicitly rejected the download, etc.)~~ **[UPD]** Decided to postpone better implementation of graceful degradation logic as per [conversation](https://rust-lang.zulipchat.com/#narrow/stream/185405-t-compiler.2Fwg-rls-2.2E0/topic/Deployment.20and.20installation/near/187758550). Demo (**[UPD]** this is a bit outdated, but still mainly reflects the feature): ![ra-github-release-download-mvp](https://user-images.githubusercontent.com/36276403/74077961-4f248a80-4a2d-11ea-962f-27c650fd6c4c.gif) Related issue: #2988 #3007 Co-authored-by: Veetaha <[email protected]> Co-authored-by: Veetaha <[email protected]>
| * docs: fix spelling untill -> untilVeetaha2020-02-091-1/+1
| | | | | | Co-Authored-By: Jonas Platte <[email protected]>
| * docs: minor fixes in wordings and punctuationVeetaha2020-02-091-2/+2
| |
| * vscode: updated docs on prebuilt binariesVeetaha2020-02-091-0/+32
| |
* | Merge #3052bors[bot]2020-02-091-14/+14
|\ \ | | | | | | | | | | | | | | | | | | | | | 3052: Rename add import assist r=matklad a=SomeoneToIgnore Based on the https://rust-lang.zulipchat.com/#narrow/stream/185405-t-compiler.2Fwg-rls-2.2E0/topic/2.20assists.20with.20the.20same.20action.20name/near/187655643 and the related discussion. Co-authored-by: Kirill Bulatov <[email protected]>
| * | Rename add import assistKirill Bulatov2020-02-071-14/+14
| |/
* / Docs cleanupsFlorian Diebold2020-02-082-18/+12
|/
* Doctest autoimportAleksey Kladov2020-02-061-1/+1
|
* Further fix `docs/user/README.md`Gian D2020-02-051-1/+1
| | | Co-Authored-By: Laurențiu Nicola <[email protected]>