From 95717712810ab6101b54688e4ea496c1e9df3733 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sun, 12 Apr 2020 22:48:16 -0700 Subject: [PATCH] =?UTF-8?q?Add=20=E2=80=98a=E2=80=99=20and=20=E2=80=98e?= =?UTF-8?q?=E2=80=99=20keybindings=20to=20move=20to=20beginning=20and=20en?= =?UTF-8?q?d=20of=20line?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- oni-package.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/oni-package.el b/oni-package.el index 7114165..0de6c25 100644 --- a/oni-package.el +++ b/oni-package.el @@ -4,7 +4,7 @@ ;; Author: Tom Willemse ;; Keywords: local -;; Version: 2019.0904.210725 +;; Version: 2020.0412.224157 ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by @@ -93,6 +93,9 @@ DESCRIPTION is the text of the news item." "New entries go here" (package--make-html-entry title description))) +(define-key package-menu-mode-map (kbd "a") 'move-beginning-of-line) +(define-key package-menu-mode-map (kbd "e") 'move-end-of-line) + (add-hook 'package-menu-mode-hook 'hl-line-mode) ;;;###autoload (with-eval-after-load 'package (require 'oni-package))