summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKyohei Uto <im@kyoheiu.dev>2023-12-09 06:08:51 +0900
committerKyohei Uto <im@kyoheiu.dev>2023-12-09 06:08:51 +0900
commite82b2ce7baab98d1367a75a0b6faff23b7ba2fde (patch)
tree3e2616d21b8e7ded27f18e7b3f0c49bcbdc8ad9f
parent1e2d0625343baae205cd7ec9675f0ce75975f3a3 (diff)
v2.11.0
-rw-r--r--CHANGELOG.md6
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--README.md5
-rw-r--r--src/help.rs1
5 files changed, 14 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0febc0a..3334892 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,12 @@
## Unreleased
+## v2.11.0 (2023-12-09)
+
+### Added
+
+- `<C-h>` for Backspace functionality after `i`, `I`, `c`, `/`, `:` and `z`.
+
## v2.10.2 (2023-11-26)
### Fixed
diff --git a/Cargo.lock b/Cargo.lock
index 85a9308..9d6f2b5 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -330,7 +330,7 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
[[package]]
name = "felix"
-version = "2.10.2"
+version = "2.11.0"
dependencies = [
"bwrap",
"chrono",
diff --git a/Cargo.toml b/Cargo.toml
index a85d504..790b3fa 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "felix"
-version = "2.10.2"
+version = "2.11.0"
authors = ["Kyohei Uto <im@kyoheiu.dev>"]
edition = "2021"
description = "tui file manager with vim-like key mapping"
diff --git a/README.md b/README.md
index e9899e3..3d3289f 100644
--- a/README.md
+++ b/README.md
@@ -25,6 +25,11 @@ For more detailed document, visit https://kyoheiu.dev/felix.
## New release
+## v2.11.0 (2023-12-09)
+
+### Added
+
+- `<C-h>` for Backspace functionality after `i`, `I`, `c`, `/`, `:` and `z`.
## v2.10.2 (2023-11-26)
### Fixed
diff --git a/src/help.rs b/src/help.rs
index 7acc8ae..fa49c0d 100644
--- a/src/help.rs
+++ b/src/help.rs
@@ -74,6 +74,7 @@ N :Go backward to the item that matches the keyword.
:q<CR> :Exit.
:{command} :Execute a command e.g. :zip test *.md
<Esc> :Return to the normal mode.
+<C-h> :Works as Backspace after `i`, `I`, `c`, `/`, `:` and `z`.
ZZ :Exit without cd to last working directory
(if `match_vim_exit_behavior` is `false`).
ZQ :cd into the last working directory and exit