summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKyohei Uto <kyoheiu@outlook.com>2021-11-05 23:02:11 +0900
committerKyohei Uto <kyoheiu@outlook.com>2021-11-05 23:02:11 +0900
commit559e48b5d4d11893e595958ee61ab27dabd718ff (patch)
tree3c04b4cff0f1ac446ca8d445212aae1f8386e196
parentf818af4accb1ad9539baca67abc14f62e3e1102b (diff)
v0.2.0v0.2.0
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--README.md5
-rw-r--r--src/help.rs4
4 files changed, 6 insertions, 7 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 77528cc..936d50b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -83,7 +83,7 @@ dependencies = [
[[package]]
name = "fm"
-version = "0.1.5"
+version = "0.2.0"
dependencies = [
"chrono",
"clipboard",
diff --git a/Cargo.toml b/Cargo.toml
index 20f1938..21aa4ff 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,7 +5,7 @@ edition = "2018"
license = "MIT"
name = "fm"
repository = "https://github.com/kyoheiu/fm"
-version = "0.1.5"
+version = "0.2.0"
[dependencies]
chrono = "*"
clipboard = "*"
diff --git a/README.md b/README.md
index b7ebe68..6fb40eb 100644
--- a/README.md
+++ b/README.md
@@ -46,9 +46,9 @@ cargo +nightly install --path .
| k / Key Down | Go down. If the list exceeds max-row, list "scrolls" before the bottom of the list. |
| h / Key Left | Go to parent directory if exists. |
| l / Key Right / Enter | Open file or change directory. Commands for execution can be managed in config file. |
-| g | Go to the top. |
+| gg | Go to the top. |
| G | Go to the bottom. |
-| D | Delete and yank item (item will go to the trash directory). |
+| dd | Delete and yank item (item will go to the trash directory). |
| y | Yank item. If you yanked other item before, its information is replaced by this one. |
| p | Put yanked item(s) in the current directory. If item with same name exists, copied item will be renamed with the suffix "\_copied". |
| V | Switch to select mode, where you can move cursor to select items. |
@@ -78,7 +78,6 @@ Default config file, which is [here](config.toml), will be created automatically
In config.toml, you can configurate:
- color of directory, file, and symlink separatively
-- whether you see the warning message when delete item
- default key for sorting item list ("Name" or "Time")
- how to open files
diff --git a/src/help.rs b/src/help.rs
index 4c4a64c..89e170f 100644
--- a/src/help.rs
+++ b/src/help.rs
@@ -13,9 +13,9 @@ j / Key Up :Go up.
k / Key Down :Go down.
h / Key Left :Go to parent directory if exists.
l / Key Right / Enter :Open file or change directory.
-g :Go to the top.
+gg :Go to the top.
G :Go to the bottom.
-D :Delete and yank item.
+dd :Delete and yank item.
y :Yank item.
p :Put yanked item in the current directory.
V :Switch to select mode.