diff options
| author | 2020-04-12 22:48:16 -0700 | |
|---|---|---|
| committer | 2020-04-12 22:48:16 -0700 | |
| commit | 95717712810ab6101b54688e4ea496c1e9df3733 (patch) | |
| tree | 60de04b9ed60d719f692cc6fbd50621404491b83 | |
| parent | ec15e1bca16cb9be156b38b5f743d3b26e71bcb2 (diff) | |
| download | emacs-config-95717712810ab6101b54688e4ea496c1e9df3733.tar.gz emacs-config-95717712810ab6101b54688e4ea496c1e9df3733.zip | |
Add ‘a’ and ‘e’ keybindings to move to beginning and end of line
| -rw-r--r-- | oni-package.el | 5 |
1 files changed, 4 insertions, 1 deletions
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 <tom@ryuslash.org> ;; 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)) |
