about summary refs log tree commit diff
path: root/docs/dev
AgeCommit message (Collapse)AuthorLines
2023-05-02Add a `localDocs` capabilityDdystopia-5/+17
2023-05-02Update hash in `lsp-extensions.md`Ddystopia-3/+3
2023-05-02Change signature of `externalDocs` in `lsp-extensions`Ddystopia-2/+2
2023-05-02last fixes after rebaseBruno Ortiz-1/+1
2023-05-02accepting review suggestionsBruno Ortiz-2/+2
2023-05-02Fixing naming from graph to listBruno Ortiz-1/+1
2023-05-02Fixing testsBruno Ortiz-0/+23
2023-05-02Highlight closure captures when cursor is on pipeLukas Wirth-1/+1
2023-05-01MIR episode 4hkalbasi-1/+13
2023-04-19SpellingJosh Soref-1/+1
* a rule * access * after * amount * annotations * assignment * assist * associated * attribute * borrowed * built-in type * clarification * command * const * constructor * corresponding * counterparts * curlies * dependencies * deterministic * diagnostic * duplicates * edge * edited * efficient * elsewhere * execution * expression * extensions * extracted * fill * github * helper * heuristic * incomplete * indent end * inlay * invocation * lifetime * looking * maybe * move * mutability * mutable * necessarily * necessary * negative * nonexistent * occurred * offsets * offsetted * overridden * parameters * params * params_and_where_preds_in_scope * paredit * parent * parentheses * prepended if * punctuation * receive * receiver * referring * repeated * representing * semantically * separately * shouldnot * siblings * similar * something's * statement * struct * structure * surprise * the * this * transparent * unimplemented * unnamed * unnecessary * unneeded * unreachable * unterminated * utilities * variant * variants * visibility * work around (v) * workaround Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
2023-04-13internal: Skip code lens resolution for mismatched document versionsLukas Wirth-1/+1
2023-03-26Handle proc macro fetching via OpQueueLukas Wirth-3/+3
2023-03-25minor: Add user facing command for reloading proc-macros in VSCodeLukas Wirth-0/+10
2023-03-25Load proc-macros asynchronouslyLukas Wirth-1/+1
2023-03-06Add `View Mir` command and fix some bugshkalbasi-1/+12
2023-02-16fix linkEthan-000-1/+1
2023-02-14Support UTF-32 position encodingAleksey Kladov-1/+1
Looks like this is a native encoding for Emacs at least!
2023-01-23Add a 'open server logs' button to the error notificationLukas Wirth-1/+1
2023-01-14Remove unnecessary Hint suffix on InlayKind variantsLukas Wirth-1/+1
2023-01-09Add docs for `colorDiagnosticOutput` capabilityIan Chamberlain-0/+26
2022-12-30Rephrase clippy policyLaurențiu Nicola-1/+1
2022-12-21Auto merge of #13771 - noritada:feature/release-notes-on-github-releases, ↵bors-3/+4
r=lnicola Add xtask for publishing release notes in Markdown on GitHub Releases from a changelog in AsciiDoc This PR provides `xtask publish-release-notes` to convert a changelog written in AsciiDoc to Markdown and update descriptions (release notes) of a corresponding entry on GitHub Releases. This AsciiDoc parser is not capable of processing every AsciiDoc document, but I have surveyed a set of existing changelog entries and have confirmed that the following notations used can be converted properly. In the future, I would like to improve the parser to accept any AsciiDoc. Alternatively, the parser could be moved out of the project. Your feedback would be appreciated! Closes #13191 ### Supported AsciiDoc syntax many occurrences - [x] documentation header - [x] section header - [x] `*`-prefixed basic unordered single level list item - [x] list continuation using `+` - [x] block image macro `image::...[]` with empty alt - [x] block image macro `image::...[]` with non-empty alt - [x] block video marco `video::...[]` with `options=loop` - [x] inline hard line break `+` - [x] inline custom macro `commit:...[]` - [x] inline custom macro `release:...[]` - [x] inline custom macro `pr:...[]` - [x] inline unconstrained bold text `**...**` - [x] inline constrained monospace ``` `...` ``` [thisweek/_posts/2019-07-24-changelog-0.adoc](https://github.com/rust-analyzer/rust-analyzer.github.io/tree/src/thisweek/_posts#:~:text=2019%2D07%2D24%2Dchangelog%2D0.adoc) - [x] paragraphs - [x] mixture of `*` and `-` for unordered list item prefix - [x] inline external link `https://...[]` [thisweek/_posts/2020-01-13-changelog-7.adoc](https://github.com/rust-analyzer/rust-analyzer.github.io/tree/src/thisweek/_posts#:~:text=2020%2D01%2D13%2Dchangelog%2D7.adoc) - [x] list item with multiline principal text with indent - [x] inline image macro `image:...[]` [thisweek/_posts/2020-03-02-changelog-14.adoc](https://github.com/rust-analyzer/rust-analyzer.github.io/blob/src/thisweek/_posts/2020-03-02-changelog-14.adoc) - [x] empty lines between list items - [x] nested unordered list item with `**` - [x] inline macro `kbd:[...]` [thisweek/_posts/2020-03-16-changelog-16.adoc](https://github.com/rust-analyzer/rust-analyzer.github.io/blob/src/thisweek/_posts/2020-03-16-changelog-16.adoc) - [x] `[source]`-prefixed listing [thisweek/_posts/2020-04-06-changelog-19.adoc](https://github.com/rust-analyzer/rust-analyzer.github.io/blob/src/thisweek/_posts/2020-04-06-changelog-19.adoc) - [x] list item with multiline principal text without indent - [x] `[source,lang]`-prefixed listing - [x] `.`-prefiexed ordered list item - [x] list item immediately after list continuation paragraph without an empty line in between [thisweek/_posts/2020-04-20-changelog-21.adoc](https://github.com/rust-analyzer/rust-analyzer.github.io/blob/src/thisweek/_posts/2020-04-20-changelog-21.adoc) - [x] title line for block image [thisweek/_posts/2020-12-21-changelog-56.adoc](https://github.com/rust-analyzer/rust-analyzer.github.io/blob/src/thisweek/_posts/2020-12-21-changelog-56.adoc) - [x] block video `video::...[]` with `options="autoplay,loop"`
2022-12-17Add a command to clear flycheck diagnosticsLukas Wirth-1/+40
2022-12-16Add command for manually running flychecksLukas Wirth-1/+1
2022-12-12Update the release process documentation to run `xtask publish-release-notes`Noritada Kobayashi-3/+4
2022-11-29Update hashJonas Schievink-1/+1
2022-11-20Improve grammar of architecture.mdZZzzaaKK-3/+3
2022-10-31Auto merge of #13445 - notJoon:modify-dead-links, r=lnicolabors-25/+25
fix) update broken links in guide.md Hi, I Just fixed some broken links in `guide.md`. In most cases, it is not connected by an old version (expecially `guide-2019-01`) of the link, so I made some modifications. Thanks for your time :)
2022-10-27Clarify feature policyLaurențiu Nicola-0/+2
2022-10-25Switch to upstream positionEncodingLaurențiu Nicola-7/+1
2022-10-20fix broken links in guide.mdnot_joon-25/+25
2022-10-16Auto merge of #13397 - zyctree:zyctree-patch-2, r=lnicolabors-3/+3
fix link in syntax.md
2022-10-17update link in syntax.mdzyctree-2/+2
2022-10-16update link in syntax.mdzyctree-2/+2
2022-10-16Update guide.md to reflect support for proc-macrosLukas Wirth-3/+2
2022-10-11Update docs/dev/syntax.mdzyctree-1/+1
Co-authored-by: Laurențiu Nicola <lnicola@users.noreply.github.com>
2022-10-11fix link in syntax.mdzyctree-1/+1
2022-10-01Add config for supplying sysroot pathLukas Wirth-1/+1
2022-09-22docs(guide): fix Analysis and AnalysisHost doc linksPaul Delafosse-2/+2
2022-08-19Implement lsp extension for cancelling running flychecksLukas Wirth-1/+1
2022-08-17fix: a bunch of typosDezhi Wu-1/+1
This PR will fix some typos detected by [typos]. There are also some other typos in the function names, variable names, and file names, which I leave as they are. I'm more certain that typos in comments should be fixed. [typos]: https://github.com/crate-ci/typos
2022-08-01Fix r-a spelling in some placesJonas Schievink-6/+6
2022-07-31Update xtask promote and release instructionsLaurențiu Nicola-3/+4
2022-07-08Update remaining GitHub URLsJonas Schievink-77/+77
2022-06-11fix typo in style.mdChris Burgess-1/+1
2022-05-30Update commit/PR styleJonas Schievink-2/+2
2022-05-22internal: Allow OnTypeFormatting to send SnippetTextEditFelicián Németh-3/+3
But continue to send TextEdit only.
2022-05-17Update lsp-extensions hashLukas Wirth-1/+1
2022-04-21Auto merge of #12015 - arjo129:master, r=jonas-schievinkbors-1/+1
[Documentation]: Update developer documentation link. Just noticed the docs links broken. The current doc link was broken. replaced with the updated version as found on the front page. Should the rest of the links be updated?
2022-04-19Allows triggering commands after an assist editJonas Schievink-1/+1