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
+2 -4
View File
@@ -1,9 +1,9 @@
use galaxy_util::path::ShellFamily;
use crate::terminal::package_installers::command_at_cursor_has_common_package_installer_prefix;
#[test]
fn test_command_at_cursor_has_common_package_installer_prefix_basic_prefixes() {
use galaxy_util::path::ShellFamily;
// A representative subset of prefixes from is_common_package_installer_prefix
let prefixes = vec![
// Node ecosystem
@@ -93,7 +93,6 @@ fn test_command_at_cursor_has_common_package_installer_prefix_with_alias_expansi
#[test]
fn test_command_at_cursor_has_common_package_installer_prefix_negative_cases() {
let cases = vec!["git add @", "echo @", "cargo run @"];
for buffer in cases {
@@ -114,7 +113,6 @@ fn test_command_at_cursor_has_common_package_installer_prefix_negative_cases() {
#[test]
fn test_command_at_cursor_has_common_package_installer_prefix_multi_segment_commands() {
// Test cases with multi-segment commands and different cursor positions
let test_cases = vec![
// npm install && git add @[cursor] -> should be false (cursor in git add segment)