aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorLukas Wirth <[email protected]>2021-06-02 21:10:09 +0100
committerLukas Wirth <[email protected]>2021-06-02 21:10:09 +0100
commitd304352407c3d3fe04aeedb9f834ba454b17f38c (patch)
tree74227d010ee88cb3a8e757dfc02eca36402e66bd /crates
parent5be653d426e3e3fd253f41f85e7d280a82037da9 (diff)
Document that `addCallArgumentSnippets` requires `addCallParenthesis
Diffstat (limited to 'crates')
-rw-r--r--crates/rust-analyzer/src/config.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/rust-analyzer/src/config.rs b/crates/rust-analyzer/src/config.rs
index ae78fd4f6..c33cdb740 100644
--- a/crates/rust-analyzer/src/config.rs
+++ b/crates/rust-analyzer/src/config.rs
@@ -92,6 +92,7 @@ config_data! {
92 checkOnSave_overrideCommand: Option<Vec<String>> = "null", 92 checkOnSave_overrideCommand: Option<Vec<String>> = "null",
93 93
94 /// Whether to add argument snippets when completing functions. 94 /// Whether to add argument snippets when completing functions.
95 /// Only applies when `#rust-analyzer.completion.addCallParenthesis#` is set.
95 completion_addCallArgumentSnippets: bool = "true", 96 completion_addCallArgumentSnippets: bool = "true",
96 /// Whether to add parenthesis when completing functions. 97 /// Whether to add parenthesis when completing functions.
97 completion_addCallParenthesis: bool = "true", 98 completion_addCallParenthesis: bool = "true",