summaryrefslogtreecommitdiffstats
path: root/src/config/key_bindings.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config/key_bindings.rs')
-rw-r--r--src/config/key_bindings.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/config/key_bindings.rs b/src/config/key_bindings.rs
index b0f1a02..f60b580 100644
--- a/src/config/key_bindings.rs
+++ b/src/config/key_bindings.rs
@@ -116,7 +116,6 @@ pub(crate) struct KeyBindings {
impl KeyBindings {
/// Create a new configuration with default values.
#[must_use]
- #[inline]
#[allow(clippy::missing_panics_doc)]
pub(crate) fn new() -> Self {
Self::new_with_config(None).unwrap() // should never error with None config
@@ -189,7 +188,6 @@ impl KeyBindings {
impl TryFrom<&Config> for KeyBindings {
type Error = ConfigError;
- #[inline]
fn try_from(config: &Config) -> Result<Self, Self::Error> {
Self::new_with_config(Some(config))
}