Rebrand to Galaxy, major improvements to Bedrock support, still needs some TLC though
This commit is contained in:
@@ -64,7 +64,7 @@ pub use select::*;
|
||||
pub use ssh::*;
|
||||
pub use theme::*;
|
||||
pub use vim_banner::*;
|
||||
use warp_core::user_preferences::GetUserPreferences as _;
|
||||
use galaxy_core::user_preferences::GetUserPreferences as _;
|
||||
|
||||
/// Describes errors encountered when loading settings from `settings.toml`.
|
||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||
@@ -127,8 +127,8 @@ use serde::{Deserialize, Serialize};
|
||||
use serde_json::{json, Value};
|
||||
use settings::Setting as _;
|
||||
use std::{collections::HashMap, ops::Mul, path::PathBuf};
|
||||
use warp_core::features::FeatureFlag;
|
||||
use warpui::{
|
||||
use galaxy_core::features::FeatureFlag;
|
||||
use galaxyui::{
|
||||
elements::DEFAULT_UI_LINE_HEIGHT_RATIO, keymap::Keystroke, AppContext, DisplayIdx,
|
||||
SingletonEntity,
|
||||
};
|
||||
@@ -583,10 +583,10 @@ pub struct ExtraMetaKeysChangedArg {
|
||||
|
||||
/// Returns the path to the user preferences file.
|
||||
pub fn user_preferences_file_path() -> PathBuf {
|
||||
warp_core::paths::config_local_dir().join("user_preferences.json")
|
||||
galaxy_core::paths::config_local_dir().join("user_preferences.json")
|
||||
}
|
||||
|
||||
/// Returns the path to the TOML settings file.
|
||||
pub fn user_preferences_toml_file_path() -> PathBuf {
|
||||
warp_core::paths::config_local_dir().join("settings.toml")
|
||||
galaxy_core::paths::config_local_dir().join("settings.toml")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user