Add section “Differences to similar packages”.

This commit is contained in:
tastytea 2020-03-15 21:53:41 +01:00
parent fa7d5fe4fe
commit 47471f561f
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
2 changed files with 32 additions and 0 deletions

View File

@ -48,6 +48,22 @@ Or, with use-package:
* `register-quicknav-unused-registers-end`: End of the range that is used to
search for unused registers. Defaults to `?Z`.
## Differences to similar packages
[iregister](https://github.com/atykhonov/iregister.el):
* Opens a minibuffer on each jump (thereby requiring an extra keystroke).
* Doesn't work with file-query registers
* Can't be restricted to the current buffer.
* Doesn't look like it's still maintained.
[register-channel](https://github.com/YangZhao11/register-channel):
* Is limited to 5 position registers by default, needs an extra keybinding
for each additional register.
* Can't be restricted to the current buffer.
* Has no ability to jump to the next/previous register.
---
Converted from `register-quicknav.el` by [*el2markdown*](https://github.com/Lindydancer/el2markdown).

View File

@ -67,6 +67,22 @@
;; * `register-quicknav-unused-registers-end': End of the range that is used to
;; search for unused registers. Defaults to `?Z'.
;; Differences to similar packages:
;;
;; [iregister](https://github.com/atykhonov/iregister.el):
;;
;; * Opens a minibuffer on each jump (thereby requiring an extra keystroke).
;; * Doesn't work with file-query registers
;; * Can't be restricted to the current buffer.
;; * Doesn't look like it's still maintained.
;;
;; [register-channel](https://github.com/YangZhao11/register-channel):
;;
;; * Is limited to 5 position registers by default, needs an extra keybinding
;; for each additional register.
;; * Can't be restricted to the current buffer.
;; * Has no ability to jump to the next/previous register.
;;; Code:
(require 'cl-lib)