mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-23 18:32:17 +00:00
Fix compile errors
This commit is contained in:
parent
20e65a533c
commit
cf934ab696
3 changed files with 7 additions and 7 deletions
|
@ -185,7 +185,8 @@
|
|||
],
|
||||
"alt-\\": "copilot::Suggest",
|
||||
"alt-]": "copilot::NextSuggestion",
|
||||
"alt-[": "copilot::PreviousSuggestion"
|
||||
"alt-[": "copilot::PreviousSuggestion",
|
||||
"cmd->": "assistant::QuoteSelection"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -199,8 +200,7 @@
|
|||
"context": "ContextEditor > Editor",
|
||||
"bindings": {
|
||||
"cmd-enter": "assistant::Assist",
|
||||
"escape": "assistant::CancelLastAssist",
|
||||
"cmd-?": "assistant::QuoteSelection"
|
||||
"cmd->": "assistant::QuoteSelection"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
|
@ -19,10 +19,7 @@ use workspace::{
|
|||
pane, Pane, Workspace,
|
||||
};
|
||||
|
||||
actions!(
|
||||
assistant,
|
||||
[NewContext, Assist, CancelLastAssist, QuoteSelection]
|
||||
);
|
||||
actions!(assistant, [NewContext, Assist, QuoteSelection]);
|
||||
|
||||
pub fn init(cx: &mut AppContext) {
|
||||
cx.add_action(AssistantEditor::assist);
|
||||
|
@ -69,6 +66,7 @@ impl AssistantPanel {
|
|||
.with_child(Pane::render_tab_bar_button(
|
||||
0,
|
||||
"icons/plus_12.svg",
|
||||
false,
|
||||
Some(("New Context".into(), Some(Box::new(NewContext)))),
|
||||
cx,
|
||||
move |_, _| todo!(),
|
||||
|
@ -81,6 +79,7 @@ impl AssistantPanel {
|
|||
} else {
|
||||
"icons/maximize_8.svg"
|
||||
},
|
||||
pane.is_zoomed(),
|
||||
Some((
|
||||
"Toggle Zoom".into(),
|
||||
Some(Box::new(workspace::ToggleZoom)),
|
||||
|
|
|
@ -31,6 +31,7 @@ use copilot::Copilot;
|
|||
pub use display_map::DisplayPoint;
|
||||
use display_map::*;
|
||||
pub use editor_settings::EditorSettings;
|
||||
pub use element::RenderExcerptHeaderParams;
|
||||
pub use element::{
|
||||
Cursor, EditorElement, HighlightedRange, HighlightedRangeLine, LineWithInvisibles,
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue