Emacs: Only cycle through position registers in current buffer.

This commit is contained in:
tastytea 2020-02-20 15:55:22 +01:00
parent 93c132e392
commit f9dde7ea77
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
;;; common.el --- Common settings for text files. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-02-20T02:42:11+0100>
;; Time-stamp: <2020-02-20T03:23:14+0100>
;;; Commentary:
@ -30,6 +30,7 @@
;; Quickly jump to next/previous register.
(use-package register-quicknav
:ensure nil ; Local package.
:custom (register-quicknav/buffer-only t)
:bind (("C-<f5>" . register-quicknav/prev-register)
("C-<f6>" . register-quicknav/next-register)
("M-r" . register-quicknav/clear-current-register))