summaryrefslogtreecommitdiffstats
path: root/src/input/input.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/input.rs')
-rw-r--r--src/input/input.rs35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/input/input.rs b/src/input/input.rs
deleted file mode 100644
index 46cf467..0000000
--- a/src/input/input.rs
+++ /dev/null
@@ -1,35 +0,0 @@
-#[derive(Clone, Copy, Debug, PartialEq)]
-pub enum Input {
- Abort,
- ActionBreak,
- ActionDrop,
- ActionEdit,
- ActionFixup,
- ActionPick,
- ActionReword,
- ActionSquash,
- Backspace,
- Character(char),
- Delete,
- Edit,
- Enter,
- ForceAbort,
- ForceRebase,
- Help,
- MoveCursorDown,
- MoveCursorLeft,
- MoveCursorPageDown,
- MoveCursorPageUp,
- MoveCursorRight,
- MoveCursorUp,
- No,
- OpenInEditor,
- Other,
- Rebase,
- Resize,
- ShowCommit,
- SwapSelectedDown,
- SwapSelectedUp,
- ToggleVisualMode,
- Yes,
-}