Skip to content

Commit

Permalink
Document 'h' and 'l' keys
Browse files Browse the repository at this point in the history
  • Loading branch information
arturs-krapans authored and cloudhead committed Dec 9, 2022
1 parent 1751d89 commit bb85030
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,8 @@ impl fmt::Display for Command {
Self::FrameAdd => write!(f, "Add a blank frame to the view"),
Self::FrameClone(i) => write!(f, "Clone frame {} and add it to the view", i),
Self::FrameRemove => write!(f, "Remove the last frame of the view"),
Self::FramePrev => write!(f, "Navigate to previous frame"),
Self::FrameNext => write!(f, "Navigate to next frame"),
Self::Noop => write!(f, "No-op"),
Self::PaletteAdd(c) => write!(f, "Add {color} to palette", color = c),
Self::PaletteClear => write!(f, "Clear palette"),
Expand Down

0 comments on commit bb85030

Please sign in to comment.