* WIP VI wrapper for editor * WIP: block cursor * Create Edit trait, run CI on all feature options * Add prints describing build steps to ci.sh * Custom rendering for Vi editor * Clippy fixes * More clippy fixes * Show clippy results in CI * Fix for Redox * Fix clippy lint * Add vi feature to enable vi-style editor * Add escape to libcosmic text box
18 lines
416 B
Rust
18 lines
416 B
Rust
// SPDX-License-Identifier: MIT OR Apache-2.0
|
|
|
|
use unicode_script::Script;
|
|
|
|
// Fallbacks to use after any script specific fallbacks
|
|
pub fn common_fallback() -> &'static [&'static str] {
|
|
&[]
|
|
}
|
|
|
|
// Fallbacks to never use
|
|
pub fn forbidden_fallback() -> &'static [&'static str] {
|
|
&[]
|
|
}
|
|
|
|
// Fallbacks to use per script
|
|
pub fn script_fallback(_script: Script, _locale: &str) -> &'static [&'static str] {
|
|
&[]
|
|
}
|