Skip to content

Commit

Permalink
Merge pull request #53 from drdo/fix-vim-l-binding
Browse files Browse the repository at this point in the history
Fix non-working 'l' vim keybind to enter a directory
  • Loading branch information
drdo authored Jul 31, 2024
2 parents ba9472d + b216b90 commit c5fa057
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "nightly"
channel = "nightly-2024-07-28"
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ fn convert_event(event: crossterm::event::Event) -> Option<Event> {
((KeyModifiers::empty(), KeyCode::Left), Left),
((KeyModifiers::empty(), KeyCode::Char('h')), Left),
((KeyModifiers::empty(), KeyCode::Right), Right),
((KeyModifiers::empty(), KeyCode::Char(';')), Right),
((KeyModifiers::empty(), KeyCode::Char('l')), Right),
((KeyModifiers::empty(), KeyCode::Up), Up),
((KeyModifiers::empty(), KeyCode::Char('k')), Up),
((KeyModifiers::empty(), KeyCode::Down), Down),
Expand Down

0 comments on commit c5fa057

Please sign in to comment.