aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-03-12 17:11:25 +0000
committerGitHub <[email protected]>2020-03-12 17:11:25 +0000
commitfab40db8bdfdac5cde5789f74d1ec28e60a8bb7e (patch)
tree5ec90c43aa979d20a21aabd54c801d4bc39b69fd /docs
parentd98a5fab46c5850a484349c50dda7cb823cc179a (diff)
parentddfac09363fa778e3830cdb7a9ce6de3d779072e (diff)
Merge #3566
3566: Fix docs r=matklad a=matklad bors r+ đŸ¤– Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'docs')
-rw-r--r--docs/user/features.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/user/features.md b/docs/user/features.md
index 06bc7ded5..45360c633 100644
--- a/docs/user/features.md
+++ b/docs/user/features.md
@@ -191,8 +191,9 @@ Two types of inlay hints are displayed currently:
191 191
192In VS Code, the following settings can be used to configure the inlay hints: 192In VS Code, the following settings can be used to configure the inlay hints:
193 193
194* `rust-analyzer.inlayHintOpts.displayType` configure which types of inlay hints are shown. 194* `rust-analyzer.inlayHints.typeHints` - enable hints for inferred types.
195* `rust-analyzer.inlayHintOpts.maxLength` — shortens the hints if their length exceeds the value specified. If no value is specified (`null`), no shortening is applied. 195* `rust-analyzer.inlayHints.parameterHints` - enable hints for function parameters.
196* `rust-analyzer.inlayHints.maxLength` — shortens the hints if their length exceeds the value specified. If no value is specified (`null`), no shortening is applied.
196 197
197**Note:** VS Code does not have native support for inlay hints [yet](https://github.com/microsoft/vscode/issues/16221) and the hints are implemented using decorations. 198**Note:** VS Code does not have native support for inlay hints [yet](https://github.com/microsoft/vscode/issues/16221) and the hints are implemented using decorations.
198This approach has limitations, the caret movement and bracket highlighting near the edges of the hint may be weird: 199This approach has limitations, the caret movement and bracket highlighting near the edges of the hint may be weird: