Quickly jump to next/previous register in Emacs.
Go to file
tastytea 361b2c697a
Actually search for next/previous register nearest to pos.
Simplified the logic, fixes the bug where you couldn't jump to the first
register from the start of the document or the last register from the end.
2020-03-08 05:01:53 +01:00
.gitignore Fix gitignore. 2020-02-19 19:00:06 +01:00
LICENSE Add license. 2020-02-20 01:38:23 +01:00
README.md Visit file-queries too, not just markers. 2020-03-07 15:36:59 +01:00
register-quicknav.el Actually search for next/previous register nearest to pos. 2020-03-08 05:01:53 +01:00

README.md

register-quicknav - Quickly jump to next/previous register

Author: tastytea tastytea@tastytea.de
Version: 0.2.0
URL: https://schlomp.space/tastytea/register-quicknav

This package is built on top of register.el and allows you to quickly jump to the next/previous position register. If you reach the end, the search wraps around and continues with the first (or last) register.

Features

  • Cycle through all position registers in both directions.
  • Clear current register.

Installation

Note: The function and variable names were previously separated by “/” from the namespace. To conform with MELPA rules the separator has been changed to “-”.

To use register-quicknav.el, put it in your load-path and add the following to your init.el:

(require 'register-quicknav)
(global-set-key (kbd "<C-f5>") #'register-quicknav-prev-register)
(global-set-key (kbd "<C-f6>") #'register-quicknav-next-register)
(global-set-key (kbd "M-r")    #'register-quicknav-clear-current-register)

Or, with use-package:

(use-package register-quicknav
  :bind (("C-<f5>" . register-quicknav-prev-register)
         ("C-<f6>" . register-quicknav-next-register)
         ("M-r"    . register-quicknav-clear-current-register)))

Instead of manually copying register-quicknav.el into your load-path, you can use quelpa:

(quelpa '(register-quicknav
          :fetcher git
          :url "https://schlomp.space/tastytea/register-quicknav.git"))

Variables

  • register-quicknav-buffer-only: Cycle only through position registers in current buffer.

Converted from register-quicknav.el by el2markdown.