diff --git a/README.md b/README.md index ebfeaad7..01417f5f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # ov - feature rich terminal pager - + [![PkgGoDev](https://pkg.go.dev/badge/github.com/noborus/ov)](https://pkg.go.dev/github.com/noborus/ov) [![Actions Status](https://github.com/noborus/ov/workflows/Go/badge.svg)](https://github.com/noborus/ov/actions) @@ -823,8 +823,6 @@ General: **Horizontal Scroll Amount:** -Horizontal Scroll Amount: - Command-line: --hscroll-width (e.g., --hscroll-width "20%" or --hscroll-width "10") Config file: Set HScrollWidth in the General section @@ -1683,7 +1681,7 @@ You can customize key bindings. down: - "Enter" - "Down" - - "ctrl+N" + - "ctrl+n" up: - "Up" - "ctrl+p" @@ -1691,6 +1689,10 @@ You can customize key bindings. See [ov.yaml](https://github.com/noborus/ov/blob/master/ov.yaml) for more information. +> [!NOTE] +> Some keys may not work depending on the terminal. +> See also [Ctrl key and corresponding key pairs (commonly treated as the same in terminals)](#ctrl-key-and-corresponding-key-pairs-(commonly-treated-as-the-same-in-terminals)). + ### 8.6. General configuration You can also customize the `General` configuration in the `config.yaml` file. diff --git a/go.mod b/go.mod index 3b2832c5..b941aabc 100644 --- a/go.mod +++ b/go.mod @@ -9,7 +9,7 @@ require ( github.com/atotto/clipboard v0.1.4 github.com/creack/pty v1.1.24 github.com/fsnotify/fsnotify v1.9.0 - github.com/gdamore/tcell/v3 v3.0.4 + github.com/gdamore/tcell/v3 v3.0.5 github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 github.com/hashicorp/golang-lru/v2 v2.0.7 github.com/jwalton/gchalk v1.3.0 diff --git a/go.sum b/go.sum index f58564a6..3eed25e6 100644 --- a/go.sum +++ b/go.sum @@ -17,8 +17,8 @@ github.com/fsnotify/fsnotify v1.9.0 h1:2Ml+OJNzbYCTzsxtv8vKSFD9PbJjmhYF14k/jKC7S github.com/fsnotify/fsnotify v1.9.0/go.mod h1:8jBTzvmWwFyi3Pb8djgCCO5IBqzKJ/Jwo8TRcHyHii0= github.com/gdamore/encoding v1.0.1 h1:YzKZckdBL6jVt2Gc+5p82qhrGiqMdG/eNs6Wy0u3Uhw= github.com/gdamore/encoding v1.0.1/go.mod h1:0Z0cMFinngz9kS1QfMjCP8TY7em3bZYeeklsSDPivEo= -github.com/gdamore/tcell/v3 v3.0.4 h1:D4FJFcdGD3A/YWSFUMT0evKo4JJXZVWq74qBfm+XRv8= -github.com/gdamore/tcell/v3 v3.0.4/go.mod h1:hPfjyFARu5K9vLzjN5TrYAoK/D9dZmqRbQkevGvK7oQ= +github.com/gdamore/tcell/v3 v3.0.5 h1:odOxRkUnMNFN0+kbx2bW7SxBAVUgAwVCVRwMJ92gzxE= +github.com/gdamore/tcell/v3 v3.0.5/go.mod h1:hPfjyFARu5K9vLzjN5TrYAoK/D9dZmqRbQkevGvK7oQ= github.com/go-viper/mapstructure/v2 v2.4.0 h1:EBsztssimR/CONLSZZ04E8qAkxNYq4Qp9LvH92wZUgs= github.com/go-viper/mapstructure/v2 v2.4.0/go.mod h1:oJDH3BJKyqBA2TXFhDsKDGDTlndYOZ6rGS0BRZIxGhM= github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=