Display keymap errors on initial load (#23394)

Also fixes issue introduced in #23113 where changes to keyboard layout
would not cause reload of keymap configuration.

Closes #20531

Release Notes:

- N/A
This commit is contained in:
Michael Sloan 2025-01-21 00:14:46 -07:00 committed by GitHub
parent 04c04e8406
commit cc1af7d96b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 147 additions and 82 deletions

View file

@ -1,7 +1,7 @@
use std::fmt::{Display, Formatter};
/// Markdown text.
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct MarkdownString(pub String);
impl Display for MarkdownString {