Skip to content

Commit be23b16

Browse files
committed
Allowing 3 lines of dead code
1 parent 0e2640c commit be23b16

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/app/files/key_bindings.rs

+2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ nest! {
6868

6969
pub alt_move_cursor_up: KeyCombination,
7070
pub alt_move_cursor_down: KeyCombination,
71+
#[allow(dead_code)]
7172
pub alt_move_cursor_left: KeyCombination,
73+
#[allow(dead_code)]
7274
pub alt_move_cursor_right: KeyCombination,
7375

7476
pub go_back: KeyCombination,

src/app/startup/args.rs

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ pub enum ImportType {
6767

6868
pub struct ParsedArgs {
6969
pub directory: PathBuf,
70+
#[allow(dead_code)]
7071
pub is_directory_from_env: bool,
7172
pub command: Option<Command>,
7273
pub should_save: bool

0 commit comments

Comments
 (0)