pub type GlobalMarks = BTreeMap<char, (u64, usize, usize)>;Expand description
Uppercase (global) vim marks, keyed by 'A'–'Z'; values are
(buffer_id, row, col). Shared across every window’s Editor via
Arc<Mutex<GlobalMarks>> — see Editor::set_global_marks_arc. Named so
the app host can spell the shared-bank type without repeating the nested
generic (mirrors crate::Registers).
Aliased Type§
pub struct GlobalMarks { /* private fields */ }