Fix cursor focus and selection in input box, add AWS env var warning box, and remove AWS Bedrock login banner

This commit is contained in:
2026-07-02 14:54:15 -05:00
parent 4770ac06b5
commit 3769646ca6
1194 changed files with 5312 additions and 8032 deletions
+6 -6
View File
@@ -22,13 +22,13 @@ echo "Checking for inline Rust test modules..."
echo "Inline Rust test module check succeeded..."
echo "Running clippy..."
# Exclude warp_completer because we run clippy on it with default features (rather than all features) below.
# Exclude galaxy_completer because we run clippy on it with default features (rather than all features) below.
#
# TODO(vorporeal): Re-enable the `all-features` flag once we've fixed things.
cargo clippy --workspace --exclude warp_completer --all-targets --tests -- -D warnings
# Run clippy on warp_completer with default, rather than all features enabled, because there is
cargo clippy --workspace --exclude galaxy_completer --all-targets --tests -- -D warnings
# Run clippy on galaxy_completer with default, rather than all features enabled, because there is
# feature-gated logic for the WIP completions-on-js implementation.
cargo clippy -p warp_completer --all-targets --tests -- -D warnings
cargo clippy -p galaxy_completer --all-targets --tests -- -D warnings
echo "clippy succeeded..."
echo "Running clang-format..."
@@ -57,9 +57,9 @@ fi
echo "Running tests via nextest..."
cargo nextest run --no-fail-fast --workspace --exclude command-signatures-v2
# Run warp_completer tests with the "v2" (completions-on-js) flag enabled. We do this to ensure that
# Run galaxy_completer tests with the "v2" (completions-on-js) flag enabled. We do this to ensure that
# the v2 completions implementation doesn't regress/rot while it's development is paused.
cargo nextest run -p warp_completer --features v2
cargo nextest run -p galaxy_completer --features v2
echo "Running doc tests..."
cargo test --doc
echo "Tests succeeded..."