assistant: Feature flag terminal inline assistant (#13732)

This PR adds a feature flag for the terminal inline assistant because we
want to keep it internal for now.

Release Notes:

- N/A
This commit is contained in:
Bennet Bo Fenner 2024-07-02 11:47:11 +02:00 committed by GitHub
parent 193be271a8
commit 51ee60b421
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 12 additions and 0 deletions

View file

@ -462,6 +462,11 @@ impl AssistantPanel {
.focus_handle(cx)
.contains_focused(cx)
{
use feature_flags::FeatureFlagAppExt;
if !cx.has_flag::<feature_flags::TerminalInlineAssist>() {
return None;
}
if let Some(terminal_view) = terminal_panel
.read(cx)
.pane()