From cb423bcb6f1830016961181dfbaab6fe9351d6b8 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Thu, 15 Aug 2024 15:54:53 -0400 Subject: [PATCH] Remove `tooltip_text` from extension manifests (#16312) This PR removes the `tooltip_text` from the extension manifests. We stopped reading this value in #16306, as it wasn't being used, so we don't need to include it in the manifest anymore. Release Notes: - N/A --- extensions/gleam/extension.toml | 1 - extensions/slash-commands-example/extension.toml | 2 -- 2 files changed, 3 deletions(-) diff --git a/extensions/gleam/extension.toml b/extensions/gleam/extension.toml index 6336211113..7cedbca5d4 100644 --- a/extensions/gleam/extension.toml +++ b/extensions/gleam/extension.toml @@ -17,6 +17,5 @@ commit = "426e67087fd62be5f4533581b5916b2cf010fb5b" [slash_commands.gleam-project] description = "Returns information about the current Gleam project." requires_argument = false -tooltip_text = "Insert Gleam project data" [indexed_docs_providers.gleam-hexdocs] diff --git a/extensions/slash-commands-example/extension.toml b/extensions/slash-commands-example/extension.toml index b0e20d6b64..888c776d01 100644 --- a/extensions/slash-commands-example/extension.toml +++ b/extensions/slash-commands-example/extension.toml @@ -9,9 +9,7 @@ repository = "https://github.com/zed-industries/zed" [slash_commands.echo] description = "echoes the provided input" requires_argument = true -tooltip_text = "Echoes the provided input" [slash_commands.pick-one] description = "pick one of three options" requires_argument = true -tooltip_text = "Pick one of three options"