From 84fdcbbe7d16a9b3febfdd8c17c65e32c4416a92 Mon Sep 17 00:00:00 2001 From: spotikhanov Date: Mon, 6 Jan 2025 21:33:04 +0300 Subject: [PATCH] Document `git.gutter_debounce` setting (#22663) Closes #22588 by providing documentation to git.gutter_debounce setting Release Notes: - N/A --------- Co-authored-by: Marshall Bowers --- crates/project/src/project_settings.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/project/src/project_settings.rs b/crates/project/src/project_settings.rs index bd0d7cc884..74b0db4e82 100644 --- a/crates/project/src/project_settings.rs +++ b/crates/project/src/project_settings.rs @@ -85,6 +85,9 @@ pub struct GitSettings { /// /// Default: tracked_files pub git_gutter: Option, + /// Sets the debounce threshold (in milliseconds) after which changes are reflected in the git gutter. + /// + /// Default: null pub gutter_debounce: Option, /// Whether or not to show git blame data inline in /// the currently focused line.