summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVille Hakulinen <ville.hakulinen@gmail.com>2020-08-16 19:13:27 +0300
committerVille Hakulinen <ville.hakulinen@gmail.com>2020-08-16 19:13:27 +0300
commitcff236789e233ca6df40d5d10311ef6b23615b7e (patch)
tree34710572ce3c777163807d9a0734d7448f06fe1c
parentadc8322c99da0d3d8e1d4363e7375b88f00069cb (diff)
Cargo fmt
-rw-r--r--src/ui/state.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ui/state.rs b/src/ui/state.rs
index 884d9c5..ca9f316 100644
--- a/src/ui/state.rs
+++ b/src/ui/state.rs
@@ -892,7 +892,11 @@ impl UIState {
self.set_ui_option("ext_cmdline".into(), *enable, nvim.clone());
}
GnvimEvent::EnableExtPopupmenu(enable) => {
- self.set_ui_option("ext_popupmenu".into(), *enable, nvim.clone());
+ self.set_ui_option(
+ "ext_popupmenu".into(),
+ *enable,
+ nvim.clone(),
+ );
}
GnvimEvent::Unknown(msg) => {
debug!("Received unknown GnvimEvent: {}", msg);