Rebrand to Galaxy, major improvements to Bedrock support, still needs some TLC though

This commit is contained in:
Ryan Ward
2026-05-07 11:29:34 -05:00
parent f4e2475c60
commit a41cbd8cc7
2433 changed files with 14208 additions and 9409 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
use warp_completer::completer::{CommandOutput, GeneratorContext};
use galaxy_completer::completer::{CommandOutput, GeneratorContext};
use crate::completer::SessionContext;
@@ -17,7 +17,7 @@ pub(crate) async fn run_dynamic_enum_command(
/// trims each row and splits on newlines.
fn parse_dynamic_command(output: &CommandOutput) -> anyhow::Result<Vec<String>> {
match output.status {
warp_completer::completer::CommandExitStatus::Success => {
galaxy_completer::completer::CommandExitStatus::Success => {
let output = String::from_utf8_lossy(output.output());
let cleaned_output: Vec<String> = output
.split("\n")
@@ -26,7 +26,7 @@ fn parse_dynamic_command(output: &CommandOutput) -> anyhow::Result<Vec<String>>
.collect();
Ok(cleaned_output)
}
warp_completer::completer::CommandExitStatus::Failure => {
galaxy_completer::completer::CommandExitStatus::Failure => {
Err(anyhow::anyhow!("Command exited with failure code"))
}
}