斜杠命令

扩展可以提供斜杠命令以供在助手中使用。

示例扩展

要查看提供斜杠命令的扩展的实际示例,请查看 slash-commands-example 扩展

如果您想亲自试用,此扩展可以作为开发扩展安装

定义斜杠命令

一个给定的扩展可以提供一个或多个斜杠命令。每个斜杠命令都必须在 extension.toml 中注册。

例如,这是一个提供两个斜杠命令的扩展:/echo/pick-one

[slash_commands.echo]
description = "echoes the provided input"
requires_argument = true

[slash_commands.pick-one]
description = "pick one of three options"
requires_argument = true

每个斜杠命令都可以定义以下属性

  • description:斜杠命令的描述,将在完成可用命令时显示。
  • requires_argument:指示斜杠命令是否至少需要一个参数才能运行。

实现斜杠命令行为

要为您的斜杠命令实现行为,请为您的扩展实现 run_slash_command

此方法接受将要运行的斜杠命令、传递给它的参数列表以及可选的 Worktree

此方法返回 SlashCommandOutput,其中包含命令的文本输出在 text 字段中。输出还可以定义 SlashCommandOutputSection,其中包含输出的范围。然后,这些部分将作为助手上下文编辑器中的折痕呈现。

您的扩展应 match 命令名称(不带前导 /),然后相应地执行行为

impl zed::Extension for MyExtension {
    fn run_slash_command(
        &self,
        command: SlashCommand,
        args: Vec<String>,
        _worktree: Option<&Worktree>,
    ) -> Result<SlashCommandOutput, String> {
        match command.name.as_str() {
            "echo" => {
                if args.is_empty() {
                    return Err("nothing to echo".to_string());
                }

                let text = args.join(" ");

                Ok(SlashCommandOutput {
                    sections: vec![SlashCommandOutputSection {
                        range: (0..text.len()).into(),
                        label: "Echo".to_string(),
                    }],
                    text,
                })
            }
            "pick-one" => {
                let Some(selection) = args.first() else {
                    return Err("no option selected".to_string());
                };

                match selection.as_str() {
                    "option-1" | "option-2" | "option-3" => {}
                    invalid_option => {
                        return Err(format!("{invalid_option} is not a valid option"));
                    }
                }

                let text = format!("You chose {selection}.");

                Ok(SlashCommandOutput {
                    sections: vec![SlashCommandOutputSection {
                        range: (0..text.len()).into(),
                        label: format!("Pick One: {selection}"),
                    }],
                    text,
                })
            }
            command => Err(format!("unknown slash command: \"{command}\"")),
        }
    }
}

自动完成斜杠命令参数

对于带有参数的斜杠命令,您还可以选择实现 complete_slash_command_argument 以提供斜杠命令的补全。

此方法接受将要运行的斜杠命令和传递给它的参数列表。它返回一个 SlashCommandArgumentCompletion 列表,该列表将显示在补全菜单中。

一个 SlashCommandArgumentCompletion 包含以下属性

  • label:将在补全菜单中显示的标签。
  • new_text:接受补全时将插入的文本。
  • run_command:接受补全时是否运行斜杠命令。

再次,您的扩展应 match 命令名称(不带前导 /)并返回所需的参数补全

impl zed::Extension for MyExtension {
    fn complete_slash_command_argument(
        &self,
        command: SlashCommand,
        _args: Vec<String>,
    ) -> Result<Vec<SlashCommandArgumentCompletion>, String> {
        match command.name.as_str() {
            "echo" => Ok(vec![]),
            "pick-one" => Ok(vec![
                SlashCommandArgumentCompletion {
                    label: "Option One".to_string(),
                    new_text: "option-1".to_string(),
                    run_command: true,
                },
                SlashCommandArgumentCompletion {
                    label: "Option Two".to_string(),
                    new_text: "option-2".to_string(),
                    run_command: true,
                },
                SlashCommandArgumentCompletion {
                    label: "Option Three".to_string(),
                    new_text: "option-3".to_string(),
                    run_command: true,
                },
            ]),
            command => Err(format!("unknown slash command: \"{command}\"")),
        }
    }
}