Allow running certain Zed actions when headless (#32095)
Rework of https://github.com/zed-industries/zed/pull/30783 Before: <img width="483" alt="before_1" src="https://github.com/user-attachments/assets/c08531ce-0c1c-4a91-8375-4542220fc1b1" /> <img width="250" alt="before_2" src="https://github.com/user-attachments/assets/e6f5404e-4e00-4125-bf2b-59a5bc6c41c1" /> <img width="369" alt="before_3" src="https://github.com/user-attachments/assets/6a17c63d-80f6-4d91-a63b-69a9d8fe533a" /> After: <img width="443" alt="after_1" src="https://github.com/user-attachments/assets/4f7203c2-0065-41da-b7df-02aeba89ab7b" /> <img width="246" alt="after_2" src="https://github.com/user-attachments/assets/585e2e25-bf06-4cdc-bfa5-930e0405c8d0" /> <img width="371" alt="after_3" src="https://github.com/user-attachments/assets/54585f1a-6a9b-45a3-9d77-b0bb1ace580b" /> Release Notes: - Allowed running certain Zed actions when headless
This commit is contained in:
parent
f8ab51307a
commit
ff6ac60bad
9 changed files with 178 additions and 151 deletions
|
@ -514,8 +514,8 @@
|
||||||
"bindings": {
|
"bindings": {
|
||||||
// Change the default action on `menu::Confirm` by setting the parameter
|
// Change the default action on `menu::Confirm` by setting the parameter
|
||||||
// "alt-ctrl-o": ["projects::OpenRecent", { "create_new_window": true }],
|
// "alt-ctrl-o": ["projects::OpenRecent", { "create_new_window": true }],
|
||||||
"alt-open": "projects::OpenRecent",
|
"alt-open": ["projects::OpenRecent", { "create_new_window": false }],
|
||||||
"alt-ctrl-o": "projects::OpenRecent",
|
"alt-ctrl-o": ["projects::OpenRecent", { "create_new_window": false }],
|
||||||
"alt-shift-open": "projects::OpenRemote",
|
"alt-shift-open": "projects::OpenRemote",
|
||||||
"alt-ctrl-shift-o": "projects::OpenRemote",
|
"alt-ctrl-shift-o": "projects::OpenRemote",
|
||||||
// Change to open path modal for existing remote connection by setting the parameter
|
// Change to open path modal for existing remote connection by setting the parameter
|
||||||
|
|
|
@ -584,7 +584,7 @@
|
||||||
"bindings": {
|
"bindings": {
|
||||||
// Change the default action on `menu::Confirm` by setting the parameter
|
// Change the default action on `menu::Confirm` by setting the parameter
|
||||||
// "alt-cmd-o": ["projects::OpenRecent", {"create_new_window": true }],
|
// "alt-cmd-o": ["projects::OpenRecent", {"create_new_window": true }],
|
||||||
"alt-cmd-o": "projects::OpenRecent",
|
"alt-cmd-o": ["projects::OpenRecent", { "create_new_window": false }],
|
||||||
"ctrl-cmd-o": "projects::OpenRemote",
|
"ctrl-cmd-o": "projects::OpenRemote",
|
||||||
"ctrl-cmd-shift-o": ["projects::OpenRemote", { "from_existing_connection": true }],
|
"ctrl-cmd-shift-o": ["projects::OpenRemote", { "from_existing_connection": true }],
|
||||||
"alt-cmd-b": "branches::OpenRecent",
|
"alt-cmd-b": "branches::OpenRecent",
|
||||||
|
|
|
@ -27,14 +27,42 @@ use ui::{KeyBinding, ListItem, ListItemSpacing, Tooltip, prelude::*, tooltip_con
|
||||||
use util::{ResultExt, paths::PathExt};
|
use util::{ResultExt, paths::PathExt};
|
||||||
use workspace::{
|
use workspace::{
|
||||||
CloseIntent, HistoryManager, ModalView, OpenOptions, SerializedWorkspaceLocation, WORKSPACE_DB,
|
CloseIntent, HistoryManager, ModalView, OpenOptions, SerializedWorkspaceLocation, WORKSPACE_DB,
|
||||||
Workspace, WorkspaceId,
|
Workspace, WorkspaceId, with_active_or_new_workspace,
|
||||||
};
|
};
|
||||||
use zed_actions::{OpenRecent, OpenRemote};
|
use zed_actions::{OpenRecent, OpenRemote};
|
||||||
|
|
||||||
pub fn init(cx: &mut App) {
|
pub fn init(cx: &mut App) {
|
||||||
SshSettings::register(cx);
|
SshSettings::register(cx);
|
||||||
cx.observe_new(RecentProjects::register).detach();
|
cx.on_action(|open_recent: &OpenRecent, cx| {
|
||||||
cx.observe_new(RemoteServerProjects::register).detach();
|
let create_new_window = open_recent.create_new_window;
|
||||||
|
with_active_or_new_workspace(cx, move |workspace, window, cx| {
|
||||||
|
let Some(recent_projects) = workspace.active_modal::<RecentProjects>(cx) else {
|
||||||
|
RecentProjects::open(workspace, create_new_window, window, cx);
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
|
||||||
|
recent_projects.update(cx, |recent_projects, cx| {
|
||||||
|
recent_projects
|
||||||
|
.picker
|
||||||
|
.update(cx, |picker, cx| picker.cycle_selection(window, cx))
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
cx.on_action(|open_remote: &OpenRemote, cx| {
|
||||||
|
let from_existing_connection = open_remote.from_existing_connection;
|
||||||
|
with_active_or_new_workspace(cx, move |workspace, window, cx| {
|
||||||
|
if from_existing_connection {
|
||||||
|
cx.propagate();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let handle = cx.entity().downgrade();
|
||||||
|
let fs = workspace.project().read(cx).fs().clone();
|
||||||
|
workspace.toggle_modal(window, cx, |window, cx| {
|
||||||
|
RemoteServerProjects::new(fs, window, cx, handle)
|
||||||
|
})
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
cx.observe_new(DisconnectedOverlay::register).detach();
|
cx.observe_new(DisconnectedOverlay::register).detach();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -86,25 +114,6 @@ impl RecentProjects {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn register(
|
|
||||||
workspace: &mut Workspace,
|
|
||||||
_window: Option<&mut Window>,
|
|
||||||
_cx: &mut Context<Workspace>,
|
|
||||||
) {
|
|
||||||
workspace.register_action(|workspace, open_recent: &OpenRecent, window, cx| {
|
|
||||||
let Some(recent_projects) = workspace.active_modal::<Self>(cx) else {
|
|
||||||
Self::open(workspace, open_recent.create_new_window, window, cx);
|
|
||||||
return;
|
|
||||||
};
|
|
||||||
|
|
||||||
recent_projects.update(cx, |recent_projects, cx| {
|
|
||||||
recent_projects
|
|
||||||
.picker
|
|
||||||
.update(cx, |picker, cx| picker.cycle_selection(window, cx))
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn open(
|
pub fn open(
|
||||||
workspace: &mut Workspace,
|
workspace: &mut Workspace,
|
||||||
create_new_window: bool,
|
create_new_window: bool,
|
||||||
|
|
|
@ -50,7 +50,6 @@ use workspace::{
|
||||||
open_ssh_project_with_existing_connection,
|
open_ssh_project_with_existing_connection,
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::OpenRemote;
|
|
||||||
use crate::ssh_config::parse_ssh_config_hosts;
|
use crate::ssh_config::parse_ssh_config_hosts;
|
||||||
use crate::ssh_connections::RemoteSettingsContent;
|
use crate::ssh_connections::RemoteSettingsContent;
|
||||||
use crate::ssh_connections::SshConnection;
|
use crate::ssh_connections::SshConnection;
|
||||||
|
@ -362,22 +361,6 @@ impl Mode {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
impl RemoteServerProjects {
|
impl RemoteServerProjects {
|
||||||
pub fn register(
|
|
||||||
workspace: &mut Workspace,
|
|
||||||
_window: Option<&mut Window>,
|
|
||||||
_: &mut Context<Workspace>,
|
|
||||||
) {
|
|
||||||
workspace.register_action(|workspace, action: &OpenRemote, window, cx| {
|
|
||||||
if action.from_existing_connection {
|
|
||||||
cx.propagate();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
let handle = cx.entity().downgrade();
|
|
||||||
let fs = workspace.project().read(cx).fs().clone();
|
|
||||||
workspace.toggle_modal(window, cx, |window, cx| Self::new(fs, window, cx, handle))
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn open(workspace: Entity<Workspace>, window: &mut Window, cx: &mut App) {
|
pub fn open(workspace: Entity<Workspace>, window: &mut Window, cx: &mut App) {
|
||||||
workspace.update(cx, |workspace, cx| {
|
workspace.update(cx, |workspace, cx| {
|
||||||
let handle = cx.entity().downgrade();
|
let handle = cx.entity().downgrade();
|
||||||
|
|
|
@ -15,8 +15,8 @@ use schemars::JsonSchema;
|
||||||
use serde::Deserialize;
|
use serde::Deserialize;
|
||||||
use settings::{SettingsStore, VsCodeSettingsSource};
|
use settings::{SettingsStore, VsCodeSettingsSource};
|
||||||
use ui::prelude::*;
|
use ui::prelude::*;
|
||||||
use workspace::Workspace;
|
|
||||||
use workspace::item::{Item, ItemEvent};
|
use workspace::item::{Item, ItemEvent};
|
||||||
|
use workspace::{Workspace, with_active_or_new_workspace};
|
||||||
|
|
||||||
use crate::appearance_settings_controls::AppearanceSettingsControls;
|
use crate::appearance_settings_controls::AppearanceSettingsControls;
|
||||||
|
|
||||||
|
@ -42,12 +42,8 @@ impl_actions!(zed, [ImportVsCodeSettings, ImportCursorSettings]);
|
||||||
actions!(zed, [OpenSettingsEditor]);
|
actions!(zed, [OpenSettingsEditor]);
|
||||||
|
|
||||||
pub fn init(cx: &mut App) {
|
pub fn init(cx: &mut App) {
|
||||||
cx.observe_new(|workspace: &mut Workspace, window, cx| {
|
cx.on_action(|_: &OpenSettingsEditor, cx| {
|
||||||
let Some(window) = window else {
|
with_active_or_new_workspace(cx, move |workspace, window, cx| {
|
||||||
return;
|
|
||||||
};
|
|
||||||
|
|
||||||
workspace.register_action(|workspace, _: &OpenSettingsEditor, window, cx| {
|
|
||||||
let existing = workspace
|
let existing = workspace
|
||||||
.active_pane()
|
.active_pane()
|
||||||
.read(cx)
|
.read(cx)
|
||||||
|
@ -61,6 +57,12 @@ pub fn init(cx: &mut App) {
|
||||||
workspace.add_item_to_active_pane(Box::new(settings_page), None, true, window, cx)
|
workspace.add_item_to_active_pane(Box::new(settings_page), None, true, window, cx)
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
cx.observe_new(|workspace: &mut Workspace, window, cx| {
|
||||||
|
let Some(window) = window else {
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
|
||||||
workspace.register_action(|_workspace, action: &ImportVsCodeSettings, window, cx| {
|
workspace.register_action(|_workspace, action: &ImportVsCodeSettings, window, cx| {
|
||||||
let fs = <dyn Fs>::global(cx);
|
let fs = <dyn Fs>::global(cx);
|
||||||
|
|
|
@ -12,7 +12,7 @@ use std::sync::Arc;
|
||||||
use theme::{Appearance, Theme, ThemeMeta, ThemeRegistry, ThemeSettings};
|
use theme::{Appearance, Theme, ThemeMeta, ThemeRegistry, ThemeSettings};
|
||||||
use ui::{ListItem, ListItemSpacing, prelude::*, v_flex};
|
use ui::{ListItem, ListItemSpacing, prelude::*, v_flex};
|
||||||
use util::ResultExt;
|
use util::ResultExt;
|
||||||
use workspace::{ModalView, Workspace, ui::HighlightedLabel};
|
use workspace::{ModalView, Workspace, ui::HighlightedLabel, with_active_or_new_workspace};
|
||||||
use zed_actions::{ExtensionCategoryFilter, Extensions};
|
use zed_actions::{ExtensionCategoryFilter, Extensions};
|
||||||
|
|
||||||
use crate::icon_theme_selector::{IconThemeSelector, IconThemeSelectorDelegate};
|
use crate::icon_theme_selector::{IconThemeSelector, IconThemeSelectorDelegate};
|
||||||
|
@ -20,14 +20,18 @@ use crate::icon_theme_selector::{IconThemeSelector, IconThemeSelectorDelegate};
|
||||||
actions!(theme_selector, [Reload]);
|
actions!(theme_selector, [Reload]);
|
||||||
|
|
||||||
pub fn init(cx: &mut App) {
|
pub fn init(cx: &mut App) {
|
||||||
cx.observe_new(
|
cx.on_action(|action: &zed_actions::theme_selector::Toggle, cx| {
|
||||||
|workspace: &mut Workspace, _window, _cx: &mut Context<Workspace>| {
|
let action = action.clone();
|
||||||
workspace
|
with_active_or_new_workspace(cx, move |workspace, window, cx| {
|
||||||
.register_action(toggle_theme_selector)
|
toggle_theme_selector(workspace, &action, window, cx);
|
||||||
.register_action(toggle_icon_theme_selector);
|
});
|
||||||
},
|
});
|
||||||
)
|
cx.on_action(|action: &zed_actions::icon_theme_selector::Toggle, cx| {
|
||||||
.detach();
|
let action = action.clone();
|
||||||
|
with_active_or_new_workspace(cx, move |workspace, window, cx| {
|
||||||
|
toggle_icon_theme_selector(workspace, &action, window, cx);
|
||||||
|
});
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
fn toggle_theme_selector(
|
fn toggle_theme_selector(
|
||||||
|
|
|
@ -7642,6 +7642,33 @@ pub fn ssh_workspace_position_from_db(
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn with_active_or_new_workspace(
|
||||||
|
cx: &mut App,
|
||||||
|
f: impl FnOnce(&mut Workspace, &mut Window, &mut Context<Workspace>) + Send + 'static,
|
||||||
|
) {
|
||||||
|
match cx.active_window().and_then(|w| w.downcast::<Workspace>()) {
|
||||||
|
Some(workspace) => {
|
||||||
|
cx.defer(move |cx| {
|
||||||
|
workspace
|
||||||
|
.update(cx, |workspace, window, cx| f(workspace, window, cx))
|
||||||
|
.log_err();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
None => {
|
||||||
|
let app_state = AppState::global(cx);
|
||||||
|
if let Some(app_state) = app_state.upgrade() {
|
||||||
|
open_new(
|
||||||
|
OpenOptions::default(),
|
||||||
|
app_state,
|
||||||
|
cx,
|
||||||
|
move |workspace, window, cx| f(workspace, window, cx),
|
||||||
|
)
|
||||||
|
.detach_and_log_err(cx);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use std::{cell::RefCell, rc::Rc};
|
use std::{cell::RefCell, rc::Rc};
|
||||||
|
|
|
@ -70,7 +70,7 @@ use workspace::{
|
||||||
create_and_open_local_file, notifications::simple_message_notification::MessageNotification,
|
create_and_open_local_file, notifications::simple_message_notification::MessageNotification,
|
||||||
open_new,
|
open_new,
|
||||||
};
|
};
|
||||||
use workspace::{CloseIntent, RestoreBanner};
|
use workspace::{CloseIntent, CloseWindow, RestoreBanner, with_active_or_new_workspace};
|
||||||
use workspace::{Pane, notifications::DetachAndPromptErr};
|
use workspace::{Pane, notifications::DetachAndPromptErr};
|
||||||
use zed_actions::{
|
use zed_actions::{
|
||||||
OpenAccountSettings, OpenBrowser, OpenDocs, OpenServerSettings, OpenSettings, OpenZedUrl, Quit,
|
OpenAccountSettings, OpenBrowser, OpenDocs, OpenServerSettings, OpenSettings, OpenZedUrl, Quit,
|
||||||
|
@ -111,6 +111,98 @@ pub fn init(cx: &mut App) {
|
||||||
if ReleaseChannel::global(cx) == ReleaseChannel::Dev {
|
if ReleaseChannel::global(cx) == ReleaseChannel::Dev {
|
||||||
cx.on_action(test_panic);
|
cx.on_action(test_panic);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cx.on_action(|_: &OpenLog, cx| {
|
||||||
|
with_active_or_new_workspace(cx, |workspace, window, cx| {
|
||||||
|
open_log_file(workspace, window, cx);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
cx.on_action(|_: &zed_actions::OpenLicenses, cx| {
|
||||||
|
with_active_or_new_workspace(cx, |workspace, window, cx| {
|
||||||
|
open_bundled_file(
|
||||||
|
workspace,
|
||||||
|
asset_str::<Assets>("licenses.md"),
|
||||||
|
"Open Source License Attribution",
|
||||||
|
"Markdown",
|
||||||
|
window,
|
||||||
|
cx,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
cx.on_action(|_: &zed_actions::OpenTelemetryLog, cx| {
|
||||||
|
with_active_or_new_workspace(cx, |workspace, window, cx| {
|
||||||
|
open_telemetry_log_file(workspace, window, cx);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
cx.on_action(|&zed_actions::OpenKeymap, cx| {
|
||||||
|
with_active_or_new_workspace(cx, |_, window, cx| {
|
||||||
|
open_settings_file(
|
||||||
|
paths::keymap_file(),
|
||||||
|
|| settings::initial_keymap_content().as_ref().into(),
|
||||||
|
window,
|
||||||
|
cx,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
cx.on_action(|_: &OpenSettings, cx| {
|
||||||
|
with_active_or_new_workspace(cx, |_, window, cx| {
|
||||||
|
open_settings_file(
|
||||||
|
paths::settings_file(),
|
||||||
|
|| settings::initial_user_settings_content().as_ref().into(),
|
||||||
|
window,
|
||||||
|
cx,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
cx.on_action(|_: &OpenAccountSettings, cx| {
|
||||||
|
with_active_or_new_workspace(cx, |_, _, cx| {
|
||||||
|
cx.open_url(&zed_urls::account_url(cx));
|
||||||
|
});
|
||||||
|
});
|
||||||
|
cx.on_action(|_: &OpenTasks, cx| {
|
||||||
|
with_active_or_new_workspace(cx, |_, window, cx| {
|
||||||
|
open_settings_file(
|
||||||
|
paths::tasks_file(),
|
||||||
|
|| settings::initial_tasks_content().as_ref().into(),
|
||||||
|
window,
|
||||||
|
cx,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
cx.on_action(|_: &OpenDebugTasks, cx| {
|
||||||
|
with_active_or_new_workspace(cx, |_, window, cx| {
|
||||||
|
open_settings_file(
|
||||||
|
paths::debug_scenarios_file(),
|
||||||
|
|| settings::initial_debug_tasks_content().as_ref().into(),
|
||||||
|
window,
|
||||||
|
cx,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
cx.on_action(|_: &OpenDefaultSettings, cx| {
|
||||||
|
with_active_or_new_workspace(cx, |workspace, window, cx| {
|
||||||
|
open_bundled_file(
|
||||||
|
workspace,
|
||||||
|
settings::default_settings(),
|
||||||
|
"Default Settings",
|
||||||
|
"JSON",
|
||||||
|
window,
|
||||||
|
cx,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
cx.on_action(|_: &zed_actions::OpenDefaultKeymap, cx| {
|
||||||
|
with_active_or_new_workspace(cx, |workspace, window, cx| {
|
||||||
|
open_bundled_file(
|
||||||
|
workspace,
|
||||||
|
settings::default_keymap(),
|
||||||
|
"Default Key Bindings",
|
||||||
|
"JSON",
|
||||||
|
window,
|
||||||
|
cx,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
fn bind_on_window_closed(cx: &mut App) -> Option<gpui::Subscription> {
|
fn bind_on_window_closed(cx: &mut App) -> Option<gpui::Subscription> {
|
||||||
|
@ -255,7 +347,7 @@ pub fn initialize_workspace(
|
||||||
handle
|
handle
|
||||||
.update(cx, |workspace, cx| {
|
.update(cx, |workspace, cx| {
|
||||||
// We'll handle closing asynchronously
|
// We'll handle closing asynchronously
|
||||||
workspace.close_window(&Default::default(), window, cx);
|
workspace.close_window(&CloseWindow, window, cx);
|
||||||
false
|
false
|
||||||
})
|
})
|
||||||
.unwrap_or(true)
|
.unwrap_or(true)
|
||||||
|
@ -683,99 +775,9 @@ fn register_actions(
|
||||||
|_, _, _| None,
|
|_, _, _| None,
|
||||||
);
|
);
|
||||||
})
|
})
|
||||||
.register_action(|workspace, _: &OpenLog, window, cx| {
|
|
||||||
open_log_file(workspace, window, cx);
|
|
||||||
})
|
|
||||||
.register_action(|workspace, _: &zed_actions::OpenLicenses, window, cx| {
|
|
||||||
open_bundled_file(
|
|
||||||
workspace,
|
|
||||||
asset_str::<Assets>("licenses.md"),
|
|
||||||
"Open Source License Attribution",
|
|
||||||
"Markdown",
|
|
||||||
window,
|
|
||||||
cx,
|
|
||||||
);
|
|
||||||
})
|
|
||||||
.register_action(
|
|
||||||
move |workspace: &mut Workspace,
|
|
||||||
_: &zed_actions::OpenTelemetryLog,
|
|
||||||
window: &mut Window,
|
|
||||||
cx: &mut Context<Workspace>| {
|
|
||||||
open_telemetry_log_file(workspace, window, cx);
|
|
||||||
},
|
|
||||||
)
|
|
||||||
.register_action(
|
|
||||||
move |_: &mut Workspace, _: &zed_actions::OpenKeymap, window, cx| {
|
|
||||||
open_settings_file(
|
|
||||||
paths::keymap_file(),
|
|
||||||
|| settings::initial_keymap_content().as_ref().into(),
|
|
||||||
window,
|
|
||||||
cx,
|
|
||||||
);
|
|
||||||
},
|
|
||||||
)
|
|
||||||
.register_action(move |_: &mut Workspace, _: &OpenSettings, window, cx| {
|
|
||||||
open_settings_file(
|
|
||||||
paths::settings_file(),
|
|
||||||
|| settings::initial_user_settings_content().as_ref().into(),
|
|
||||||
window,
|
|
||||||
cx,
|
|
||||||
);
|
|
||||||
})
|
|
||||||
.register_action(
|
|
||||||
|_: &mut Workspace, _: &OpenAccountSettings, _: &mut Window, cx| {
|
|
||||||
cx.open_url(&zed_urls::account_url(cx));
|
|
||||||
},
|
|
||||||
)
|
|
||||||
.register_action(move |_: &mut Workspace, _: &OpenTasks, window, cx| {
|
|
||||||
open_settings_file(
|
|
||||||
paths::tasks_file(),
|
|
||||||
|| settings::initial_tasks_content().as_ref().into(),
|
|
||||||
window,
|
|
||||||
cx,
|
|
||||||
);
|
|
||||||
})
|
|
||||||
.register_action(move |_: &mut Workspace, _: &OpenDebugTasks, window, cx| {
|
|
||||||
open_settings_file(
|
|
||||||
paths::debug_scenarios_file(),
|
|
||||||
|| settings::initial_debug_tasks_content().as_ref().into(),
|
|
||||||
window,
|
|
||||||
cx,
|
|
||||||
);
|
|
||||||
})
|
|
||||||
.register_action(move |_: &mut Workspace, _: &OpenDebugTasks, window, cx| {
|
|
||||||
open_settings_file(
|
|
||||||
paths::debug_scenarios_file(),
|
|
||||||
|| settings::initial_debug_tasks_content().as_ref().into(),
|
|
||||||
window,
|
|
||||||
cx,
|
|
||||||
);
|
|
||||||
})
|
|
||||||
.register_action(open_project_settings_file)
|
.register_action(open_project_settings_file)
|
||||||
.register_action(open_project_tasks_file)
|
.register_action(open_project_tasks_file)
|
||||||
.register_action(open_project_debug_tasks_file)
|
.register_action(open_project_debug_tasks_file)
|
||||||
.register_action(
|
|
||||||
move |workspace, _: &zed_actions::OpenDefaultKeymap, window, cx| {
|
|
||||||
open_bundled_file(
|
|
||||||
workspace,
|
|
||||||
settings::default_keymap(),
|
|
||||||
"Default Key Bindings",
|
|
||||||
"JSON",
|
|
||||||
window,
|
|
||||||
cx,
|
|
||||||
);
|
|
||||||
},
|
|
||||||
)
|
|
||||||
.register_action(move |workspace, _: &OpenDefaultSettings, window, cx| {
|
|
||||||
open_bundled_file(
|
|
||||||
workspace,
|
|
||||||
settings::default_settings(),
|
|
||||||
"Default Settings",
|
|
||||||
"JSON",
|
|
||||||
window,
|
|
||||||
cx,
|
|
||||||
);
|
|
||||||
})
|
|
||||||
.register_action(
|
.register_action(
|
||||||
|workspace: &mut Workspace,
|
|workspace: &mut Workspace,
|
||||||
_: &project_panel::ToggleFocus,
|
_: &project_panel::ToggleFocus,
|
||||||
|
|
|
@ -67,7 +67,7 @@ pub fn app_menus() -> Vec<Menu> {
|
||||||
MenuItem::action(
|
MenuItem::action(
|
||||||
"Open Recent...",
|
"Open Recent...",
|
||||||
zed_actions::OpenRecent {
|
zed_actions::OpenRecent {
|
||||||
create_new_window: true,
|
create_new_window: false,
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
MenuItem::action(
|
MenuItem::action(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue