Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/extension_api/wit/since_v0.6.0/dap.wit
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ interface dap {
}

/// Debug Config is the "highest-level" configuration for a debug session.
/// It comes from a new session modal UI; thus, it is essentially debug-adapter-agnostic.
/// It comes from a new process modal UI; thus, it is essentially debug-adapter-agnostic.
/// It is expected of the extension to translate this generic configuration into something that can be debugged by the adapter (debug scenario).
record debug-config {
/// Name of the debug task
Expand Down
2 changes: 1 addition & 1 deletion crates/task/src/debug_format.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ pub enum Request {
Attach,
}

/// This struct represent a user created debug task from the new session modal
/// This struct represent a user created debug task from the new process modal
#[derive(Deserialize, Serialize, PartialEq, Eq, Clone, Debug, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub struct ZedDebugConfig {
Expand Down
8 changes: 4 additions & 4 deletions docs/src/configuring-zed.md
Original file line number Diff line number Diff line change
Expand Up @@ -1944,17 +1944,17 @@ Example:

1. Maps to `Alt` on Linux and Windows and to `Option` on MacOS:

```jsonc
```json
{
"multi_cursor_modifier": "alt",
"multi_cursor_modifier": "alt"
}
```

2. Maps `Control` on Linux and Windows and to `Command` on MacOS:

```jsonc
```json
{
"multi_cursor_modifier": "cmd_or_ctrl", // alias: "cmd", "ctrl"
"multi_cursor_modifier": "cmd_or_ctrl" // alias: "cmd", "ctrl"
}
```

Expand Down
Loading