Skip to content

Commit

Permalink
fix: Package lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Jul 4, 2024
1 parent c94613c commit 12663a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion centaur-tabs-elements.el
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ It has 3 options:
'(?1 ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9)
"Buffer jump keys used by centaur-tabs-ace-jump.")

(defvar centuar-tabs-ace-dispatch-alist
(defvar centaur-tabs-ace-dispatch-alist
'((?q exit "Exit")
(?\C-g exit "Exit")
(?j jump-to-tab "Jump to tab")
Expand Down
6 changes: 3 additions & 3 deletions centaur-tabs-interactive.el
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ TAB has to be in the same group as the current tab."

(defun centaur-tabs-ace-action (action)
"Preform ACTION on a visible tab. Ace-jump style.
ACTION has to be one of value in `centuar-tabs-ace-dispatch-alist'"
ACTION has to be one of value in `centaur-tabs-ace-dispatch-alist'"
(when (centaur-tabs-current-tabset t)
(when centaur-tabs-ace-jump-dim-buffer
(centaur-tabs--dim-window))
Expand Down Expand Up @@ -351,7 +351,7 @@ ACTION has to be one of value in `centuar-tabs-ace-dispatch-alist'"
(centaur-tabs-swap-tab sel))))
(throw 'done nil))
;; actions
((setq action-cache (assoc char centuar-tabs-ace-dispatch-alist))
((setq action-cache (assoc char centaur-tabs-ace-dispatch-alist))
(setq action-cache (cadr action-cache))
(cond ((eq action-cache 'exit) ; exit
(message "Quit")
Expand All @@ -369,7 +369,7 @@ ACTION has to be one of value in `centuar-tabs-ace-dispatch-alist'"
(lambda (elem) (format "%s: %s"
(key-description (vector (car elem)))
(caddr elem)))
centuar-tabs-ace-dispatch-alist
centaur-tabs-ace-dispatch-alist
"\n")))
(t (setq action action-cache) ; other actions
(cond ((eq action-cache 'jump-to-tab)
Expand Down

0 comments on commit 12663a3

Please sign in to comment.