Skip to content
Open
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: 0 additions & 2 deletions app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,6 @@ default = [
"command_correction_key",
"kitty_images",
"global_ai_analytics_collection",
"grep_tool",
"validate_autosuggestions",
"clear_autosuggestion_on_escape",
"file_retrieval_tools",
Expand Down Expand Up @@ -700,7 +699,6 @@ full_screen_zen_mode = []
global_ai_analytics_banner = []
global_ai_analytics_collection = []
grab_the_baton_editing = []
grep_tool = []
# This feature is enabled in graphical builds of Warp, and groups together other features
# that are not needed in headless builds. Because Cargo features are additive, the default
# feature set is for a minimal build of Warp, and we add on GUI-specific features here.
Expand Down
2 changes: 0 additions & 2 deletions app/src/features.rs
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,6 @@ fn enabled_features() -> HashSet<FeatureFlag> {
FeatureFlag::RemoteCodebaseIndexing,
#[cfg(feature = "use_tantivy_search")]
FeatureFlag::UseTantivySearch,
#[cfg(feature = "grep_tool")]
FeatureFlag::GrepTool,
#[cfg(feature = "mcp_server")]
FeatureFlag::McpServer,
#[cfg(feature = "mcp_debugging_ids")]
Expand Down
3 changes: 0 additions & 3 deletions crates/warp_features/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -257,9 +257,6 @@ pub enum FeatureFlag {
/// If enabled, command palette searches will use Tantivy search instead of the default fuzzy search.
UseTantivySearch,

/// Allows AI to call the grep tool.
GrepTool,

/// MCP server v0 functionality.
McpServer,

Expand Down
Loading