diff --git a/app/src/help/bindings.rs b/app/src/help/bindings.rs index e8e574fb..f3fb2733 100644 --- a/app/src/help/bindings.rs +++ b/app/src/help/bindings.rs @@ -17,9 +17,15 @@ impl Widget for Bindings<'_> { return; } - let col1 = bindings.iter().map(|c| ListItem::new(c.on())).collect::>(); + let col1 = bindings + .iter() + .map(|c| ListItem::new(c.on()).style(Style::new().fg(Color::Yellow))) + .collect::>(); - let col2 = bindings.iter().map(|c| ListItem::new(c.exec())).collect::>(); + let col2 = bindings + .iter() + .map(|c| ListItem::new(c.exec()).style(Style::new().fg(Color::Cyan))) + .collect::>(); let col3 = bindings .iter() @@ -34,7 +40,7 @@ impl Widget for Bindings<'_> { let cursor = self.cx.help.rel_cursor() as u16; buf.set_style( Rect { x: area.x, y: area.y + cursor, width: area.width, height: 1 }, - Style::new().bg(Color::Blue).fg(Color::Black).bold(), + Style::new().bg(Color::Black).bold(), ); List::new(col1).render(chunks[0], buf); diff --git a/config/preset/keymap.toml b/config/preset/keymap.toml index a23a61c3..399fca0b 100644 --- a/config/preset/keymap.toml +++ b/config/preset/keymap.toml @@ -35,9 +35,9 @@ keymap = [ # Operation { on = [ "o" ], exec = "open", desc = "Open the selected files" }, - { on = [ "O" ], exec = "open --interactive", desc = "Open the selected files with an interactive UI to choose the opening method" }, + { on = [ "O" ], exec = "open --interactive", desc = "Open the selected files interactively" }, { on = [ "" ], exec = "open", desc = "Open the selected files" }, - { on = [ "" ], exec = "open --interactive", desc = "Open the selected files with an interactive UI to choose the opening method" }, # It's cool if you're using a terminal that supports CSI u + { on = [ "" ], exec = "open --interactive", desc = "Open the selected files interactively" }, # It's cool if you're using a terminal that supports CSI u { on = [ "y" ], exec = "yank", desc = "Copy the selected files" }, { on = [ "x" ], exec = "yank --cut", desc = "Cut the selected files" }, { on = [ "p" ], exec = "paste", desc = "Paste the files" },