Some important fix (don't look)

pull/3/head
Arijit Basu 3 years ago
parent e8679fb6c9
commit 720ba38b4d
No known key found for this signature in database
GPG Key ID: 7D7BF809E7378863

2
Cargo.lock generated

@ -1096,7 +1096,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "xplr"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"criterion",
"crossterm",

@ -1,10 +1,13 @@
[package]
name = "xplr"
version = "0.1.0"
version = "0.1.1"
authors = ["Arijit Basu <sayanarijit@gmail.com>"]
edition = "2018"
description = "An experimental, minimal, configurable TUI file explorer, stealing ideas from nnn and fzf."
license = "MIT"
readme = "README.md"
repository = "https://github.com/sayanarijit/xplr"
homepage = "https://github.com/sayanarijit/xplr"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

@ -128,7 +128,7 @@ key_bindings:
actions:
- FocusLast
tilda:
tilde:
help: go home
actions:
- ChangeDirectory: ~

@ -252,7 +252,7 @@ impl Default for KeyBindings {
);
global.insert(
Key::Tilda,
Key::Tilde,
GlobalActionMenu {
help: "home".into(),
actions: vec![GlobalAction::ChangeDirectory("~".to_string())],

@ -230,7 +230,7 @@ pub enum Key {
Plus,
Minus,
Backtick,
Tilda,
Tilde,
Underscore,
Equals,
Semicolon,
@ -464,7 +464,7 @@ impl Key {
TermionKey::Char('+') => Key::Plus,
TermionKey::Char('-') => Key::Minus,
TermionKey::Char('`') => Key::Backtick,
TermionKey::Char('~') => Key::Tilda,
TermionKey::Char('~') => Key::Tilde,
TermionKey::Char('_') => Key::Underscore,
TermionKey::Char('=') => Key::Equals,
TermionKey::Char(';') => Key::Semicolon,

Loading…
Cancel
Save