emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/zuul 36fb6e7a13 15/17: Address feedback from package-li


From: ELPA Syncer
Subject: [elpa] externals/zuul 36fb6e7a13 15/17: Address feedback from package-lint
Date: Tue, 30 Aug 2022 11:58:25 -0400 (EDT)

branch: externals/zuul
commit 36fb6e7a13fc3a021ca6c658b82e8279b516edbf
Author: Niklas Eklund <niklas.eklund@posteo.net>
Commit: Niklas Eklund <niklas.eklund@posteo.net>

    Address feedback from package-lint
---
 README.md | 4 ++--
 zuul.el   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index 4956b70c08..a84d091e17 100644
--- a/README.md
+++ b/README.md
@@ -65,8 +65,8 @@ The major mode `zuul-log-mode` provides the following 
commands.
 | zuul-previous-command      | C-c C-p | Go to previous command in build log   
     |
 | zuul-next-command          | C-c C-n | Go to next command in build log       
     |
 | zuul-open-build-in-browser | C-c C-o | Open build in browser                 
     |
-| zuul-previous-build        | C-c C-[ | Switch to previous build              
     |
-| zuul-next-build            | C-c C-] | Switch to next build                  
     |
+| zuul-previous-build        | C-c [   | Switch to previous build              
     |
+| zuul-next-build            | C-c ]   | Switch to next build                  
     |
 | zuul-quit-build            | C-c C-q | Quit and delete build log buffers     
     |
 
 It also integrates with the following built in features:
diff --git a/zuul.el b/zuul.el
index d1d6a4f2cc..e1ebdb63d5 100644
--- a/zuul.el
+++ b/zuul.el
@@ -1138,9 +1138,9 @@ Optionally provide extra parameters PARAMS, PARSER, 
METHOD, BUFFER or HEADERS."
 (let ((map zuul-log-mode-map))
   (define-key map (kbd "C-c C-b") #'zuul-switch-build)
   (define-key map (kbd "C-c C-.") #'eldoc-mode)
-  (define-key map (kbd "C-c C-]") #'zuul-next-build)
+  (define-key map (kbd "C-c ]") #'zuul-next-build)
   (define-key map (kbd "C-c C-o") #'zuul-open-build-in-browser)
-  (define-key map (kbd "C-c C-[") #'zuul-previous-build)
+  (define-key map (kbd "C-c [") #'zuul-previous-build)
   (define-key map (kbd "C-c C-p") #'zuul-previous-command)
   (define-key map (kbd "C-c C-n") #'zuul-next-command)
   (define-key map (kbd "C-c C-q") #'zuul-quit-build)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]