mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 05:00:16 +00:00
a787be6c9f
Improves documentation for `CodeLabel.filter_range` in `zed_extension_api` by clarifying that it's a range of only the text displayed in the label, *not* the `code` field. Release Notes: - N/A
130 lines
4.7 KiB
Text
130 lines
4.7 KiB
Text
package zed:extension;
|
|
|
|
world extension {
|
|
import github;
|
|
import platform;
|
|
import nodejs;
|
|
|
|
use lsp.{completion, symbol};
|
|
|
|
/// Initializes the extension.
|
|
export init-extension: func();
|
|
|
|
/// The type of a downloaded file.
|
|
enum downloaded-file-type {
|
|
/// A gzipped file (`.gz`).
|
|
gzip,
|
|
/// A gzipped tar archive (`.tar.gz`).
|
|
gzip-tar,
|
|
/// A ZIP file (`.zip`).
|
|
zip,
|
|
/// An uncompressed file.
|
|
uncompressed,
|
|
}
|
|
|
|
/// The installation status for a language server.
|
|
variant language-server-installation-status {
|
|
/// The language server has no installation status.
|
|
none,
|
|
/// The language server is being downloaded.
|
|
downloading,
|
|
/// The language server is checking for updates.
|
|
checking-for-update,
|
|
/// The language server installation failed for specified reason.
|
|
failed(string),
|
|
}
|
|
|
|
record settings-location {
|
|
worktree-id: u64,
|
|
path: string,
|
|
}
|
|
|
|
import get-settings: func(path: option<settings-location>, category: string, key: option<string>) -> result<string, string>;
|
|
|
|
/// Downloads a file from the given URL and saves it to the given path within the extension's
|
|
/// working directory.
|
|
///
|
|
/// The file will be extracted according to the given file type.
|
|
import download-file: func(url: string, file-path: string, file-type: downloaded-file-type) -> result<_, string>;
|
|
|
|
/// Makes the file at the given path executable.
|
|
import make-file-executable: func(filepath: string) -> result<_, string>;
|
|
|
|
/// Updates the installation status for the given language server.
|
|
import set-language-server-installation-status: func(language-server-name: string, status: language-server-installation-status);
|
|
|
|
/// A list of environment variables.
|
|
type env-vars = list<tuple<string, string>>;
|
|
|
|
/// A command.
|
|
record command {
|
|
/// The command to execute.
|
|
command: string,
|
|
/// The arguments to pass to the command.
|
|
args: list<string>,
|
|
/// The environment variables to set for the command.
|
|
env: env-vars,
|
|
}
|
|
|
|
/// A Zed worktree.
|
|
resource worktree {
|
|
/// Returns the ID of the worktree.
|
|
id: func() -> u64;
|
|
/// Returns the root path of the worktree.
|
|
root-path: func() -> string;
|
|
/// Returns the textual contents of the specified file in the worktree.
|
|
read-text-file: func(path: string) -> result<string, string>;
|
|
/// Returns the path to the given binary name, if one is present on the `$PATH`.
|
|
which: func(binary-name: string) -> option<string>;
|
|
/// Returns the current shell environment.
|
|
shell-env: func() -> env-vars;
|
|
}
|
|
|
|
/// Returns the command used to start up the language server.
|
|
export language-server-command: func(language-server-id: string, worktree: borrow<worktree>) -> result<command, string>;
|
|
|
|
/// Returns the initialization options to pass to the language server on startup.
|
|
///
|
|
/// The initialization options are represented as a JSON string.
|
|
export language-server-initialization-options: func(language-server-id: string, worktree: borrow<worktree>) -> result<option<string>, string>;
|
|
|
|
/// Returns the workspace configuration options to pass to the language server.
|
|
export language-server-workspace-configuration: func(language-server-id: string, worktree: borrow<worktree>) -> result<option<string>, string>;
|
|
|
|
/// A label containing some code.
|
|
record code-label {
|
|
/// The source code to parse with Tree-sitter.
|
|
code: string,
|
|
/// The spans to display in the label.
|
|
spans: list<code-label-span>,
|
|
/// The range of the displayed label to include when filtering.
|
|
filter-range: range,
|
|
}
|
|
|
|
/// A span within a code label.
|
|
variant code-label-span {
|
|
/// A range into the parsed code.
|
|
code-range(range),
|
|
/// A span containing a code literal.
|
|
literal(code-label-span-literal),
|
|
}
|
|
|
|
/// A span containing a code literal.
|
|
record code-label-span-literal {
|
|
/// The literal text.
|
|
text: string,
|
|
/// The name of the highlight to use for this literal.
|
|
highlight-name: option<string>,
|
|
}
|
|
|
|
/// A (half-open) range (`[start, end)`).
|
|
record range {
|
|
/// The start of the range (inclusive).
|
|
start: u32,
|
|
/// The end of the range (exclusive).
|
|
end: u32,
|
|
}
|
|
|
|
export labels-for-completions: func(language-server-id: string, completions: list<completion>) -> result<list<option<code-label>>, string>;
|
|
export labels-for-symbols: func(language-server-id: string, symbols: list<symbol>) -> result<list<option<code-label>>, string>;
|
|
}
|