Files
galaxy/app/src/settings/emacs_bindings.rs
T
Ryan Ward 2f64909469 Update AI agent, settings, and terminal modules
- Update AI agent conversation, task, and prompt builder
- Add notebooks execution module for blocklist actions
- Update Bedrock and OpenAI response translators
- Refactor settings modules across multiple subsystems
- Update terminal settings and window settings
- Update drive settings and search command settings
2026-07-01 14:30:04 -05:00

20 lines
750 B
Rust

use crate::banner::BannerState;
use settings::{macros::define_settings_group, SupportedPlatforms, SyncToCloud};
// This isn't exactly a setting, but rather a record of a
// user action that should be persisted the same way we would a setting.
//
// When a Linux user chooses Emacs bindings,
// we want to remember that they did so.
// That way, we skip displaying it in the future
// and prevent it from becoming an annoyance.
define_settings_group!(EmacsBindingsSettings, settings: [
emacs_bindings_banner_state: EmacsBindingsBannerState {
type: BannerState,
default: BannerState::NotDismissed,
supported_platforms: SupportedPlatforms::LINUX,
sync_to_cloud: SyncToCloud::Never,
private: true,
},
]);