branch: elpa/nix-mode commit 1f93977c25aeb1dcfce0e3e7147a792aeda0aeb3 Author: Matthew Bauer <mjbaue...@gmail.com> Commit: Matthew Bauer <mjbaue...@gmail.com>
Bind l to nix-store-show-log --- nix-store.el | 1 + 1 file changed, 1 insertion(+) diff --git a/nix-store.el b/nix-store.el index 21e3bb732e..e3e872edeb 100644 --- a/nix-store.el +++ b/nix-store.el @@ -218,6 +218,7 @@ It uses \\[nix-store-show-path] to display the store path." (defvar nix-store-path-mode-map (let ((map (make-sparse-keymap))) (define-key map (kbd "RET") 'nix-store-show-path-at-point) + (define-key map (kbd "l") 'nix-store-show-log) map)) (defun nix-store--revert-buffer-function (&rest _ignore)