diff --git a/Cargo.lock b/Cargo.lock index 1ce19b9..707f7dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1096,7 +1096,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "xplr" -version = "0.1.0" +version = "0.1.1" dependencies = [ "criterion", "crossterm", diff --git a/Cargo.toml b/Cargo.toml index 68dc422..88cf794 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,13 @@ [package] name = "xplr" -version = "0.1.0" +version = "0.1.1" authors = ["Arijit Basu "] 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 diff --git a/config.yml b/config.yml index 626bad4..3de8c5c 100644 --- a/config.yml +++ b/config.yml @@ -128,7 +128,7 @@ key_bindings: actions: - FocusLast - tilda: + tilde: help: go home actions: - ChangeDirectory: ~ diff --git a/src/config.rs b/src/config.rs index c8927ef..817c617 100644 --- a/src/config.rs +++ b/src/config.rs @@ -252,7 +252,7 @@ impl Default for KeyBindings { ); global.insert( - Key::Tilda, + Key::Tilde, GlobalActionMenu { help: "home".into(), actions: vec![GlobalAction::ChangeDirectory("~".to_string())], diff --git a/src/input.rs b/src/input.rs index b216f9a..8bf1c11 100644 --- a/src/input.rs +++ b/src/input.rs @@ -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,