feat(strider): add vim h key (#182)

This commit is contained in:
Aram Drevekenin 2021-02-12 11:44:39 +01:00 committed by GitHub
parent ed22071381
commit 695a75c363
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -57,7 +57,7 @@ impl ZellijTile for State {
FsEntry::File(p, _) => open_file(&p), FsEntry::File(p, _) => open_file(&p),
} }
} }
Key::Left => { Key::Left | Key::Char('h') => {
self.path.pop(); self.path.pop();
refresh_directory(self); refresh_directory(self);
} }