File tree 2 files changed +3
-7
lines changed
2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " passepartui"
3
3
description = " A TUI for pass"
4
- version = " 0.1.1 "
4
+ version = " 0.1.2 "
5
5
edition = " 2021"
6
6
authors = [" Karl Felix Schewe" ]
7
7
readme = " README.md"
Original file line number Diff line number Diff line change @@ -158,12 +158,8 @@ impl<'a> App<'a> {
158
158
KeyCode :: Esc | KeyCode :: Enter => Some ( Action :: Navigation ( NavigationAction :: Leave ) ) ,
159
159
KeyCode :: Down => Some ( Action :: Navigation ( NavigationAction :: Down ) ) ,
160
160
KeyCode :: Up => Some ( Action :: Navigation ( NavigationAction :: Up ) ) ,
161
- KeyCode :: PageDown | KeyCode :: Char ( 'f' ) => {
162
- Some ( Action :: Navigation ( NavigationAction :: PageDown ) )
163
- }
164
- KeyCode :: PageUp | KeyCode :: Char ( 'b' ) => {
165
- Some ( Action :: Navigation ( NavigationAction :: PageUp ) )
166
- }
161
+ KeyCode :: PageDown => Some ( Action :: Navigation ( NavigationAction :: PageDown ) ) ,
162
+ KeyCode :: PageUp => Some ( Action :: Navigation ( NavigationAction :: PageUp ) ) ,
167
163
KeyCode :: F ( 1 ) => Some ( Action :: Navigation ( NavigationAction :: Help ) ) ,
168
164
KeyCode :: Char ( key) => Some ( Action :: Search ( SearchAction :: Insert ( key) ) ) ,
169
165
KeyCode :: Backspace => Some ( Action :: Search ( SearchAction :: RemoveLeft ) ) ,
You can’t perform that action at this time.
0 commit comments