From aba242d5763a34d835d7dbb03e540d07b00e5cbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Marcos?= Date: Mon, 17 Mar 2025 14:47:37 -0300 Subject: [PATCH] Document `gutter_debounce` (#26940) Release Notes: - N/A --- docs/src/configuring-zed.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/docs/src/configuring-zed.md b/docs/src/configuring-zed.md index a5121bdf25..b2bc9ff747 100644 --- a/docs/src/configuring-zed.md +++ b/docs/src/configuring-zed.md @@ -1382,6 +1382,26 @@ To interpret all `.c` files as C++, files called `MyLockFile` as TOML and files } ``` +### Gutter Debounce + +- Description: Sets the debounce threshold (in milliseconds) after which changes are reflected in the git gutter. +- Setting: `gutter_debounce` +- Default: `null` + +**Options** + +`integer` values representing milliseconds + +Example: + +```json +{ + "git": { + "gutter_debounce": 100 + } +} +``` + ### Inline Git Blame - Description: Whether or not to show git blame information inline, on the currently focused line.