Rename debug: commands to dev: (#30675)
Closes #ISSUE Release Notes: - Breaking change: The actions used while developing Zed have been renamed from `debug:` to `dev:` to avoid confusion with the new debugger feature: - - `dev::OpenDebugAdapterLogs` - - `dev::OpenSyntaxTreeView` - - `dev::OpenThemePreview` - - `dev::OpenLanguageServerLogs` - - `dev::OpenKeyContextView`
This commit is contained in:
parent
7f9a365d8f
commit
ed361ff6a2
9 changed files with 11 additions and 11 deletions
|
@ -13,7 +13,7 @@ use ui::{
|
|||
};
|
||||
use workspace::{Item, SplitDirection, Workspace};
|
||||
|
||||
actions!(debug, [OpenKeyContextView]);
|
||||
actions!(dev, [OpenKeyContextView]);
|
||||
|
||||
pub fn init(cx: &mut App) {
|
||||
cx.observe_new(|workspace: &mut Workspace, _, _| {
|
||||
|
|
|
@ -201,7 +201,7 @@ pub(crate) struct LogMenuItem {
|
|||
pub server_kind: LanguageServerKind,
|
||||
}
|
||||
|
||||
actions!(debug, [OpenLanguageServerLogs]);
|
||||
actions!(dev, [OpenLanguageServerLogs]);
|
||||
|
||||
pub fn init(cx: &mut App) {
|
||||
let log_store = cx.new(LogStore::new);
|
||||
|
|
|
@ -15,7 +15,7 @@ use workspace::{
|
|||
item::{Item, ItemHandle},
|
||||
};
|
||||
|
||||
actions!(debug, [OpenSyntaxTreeView]);
|
||||
actions!(dev, [OpenSyntaxTreeView]);
|
||||
|
||||
pub fn init(cx: &mut App) {
|
||||
cx.observe_new(|workspace: &mut Workspace, _, _| {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue