Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit f7fcdb6

Browse files
committed
Order alphabetically
1 parent d044bc3 commit f7fcdb6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/rust-analyzer/src/config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,12 +195,12 @@ config_data! {
195195
completion_autoself_enable: bool = "true",
196196
/// Whether to add parenthesis and argument snippets when completing function.
197197
completion_callable_snippets: CallableCompletionDef = "\"fill_arguments\"",
198+
/// Maximum number of completions to return. If `None`, the limit is infinite.
199+
completion_limit: Option<usize> = "null",
198200
/// Whether to show postfix snippets like `dbg`, `if`, `not`, etc.
199201
completion_postfix_enable: bool = "true",
200202
/// Enables completions of private items and fields that are defined in the current workspace even if they are not visible at the current position.
201203
completion_privateEditable_enable: bool = "false",
202-
/// Maximum number of completions to return. If `None`, the limit is infinite.
203-
completion_limit: Option<usize> = "null",
204204
/// Custom completion snippets.
205205
// NOTE: Keep this list in sync with the feature docs of user snippets.
206206
completion_snippets_custom: FxHashMap<String, SnippetDef> = r#"{

0 commit comments

Comments
 (0)