mirror of
https://github.com/vale981/doom-modeline
synced 2025-03-06 09:41:41 -05:00
Update circe keymap.
This commit is contained in:
parent
ff28d4e16b
commit
a30021cac2
1 changed files with 4 additions and 4 deletions
|
@ -2176,8 +2176,8 @@ we don't want to remove that so we just return the original."
|
||||||
(doom-modeline--tracking-buffers buffers)
|
(doom-modeline--tracking-buffers buffers)
|
||||||
(cond
|
(cond
|
||||||
((doom-modeline--circe-active)
|
((doom-modeline--circe-active)
|
||||||
"mouse-1: Switch to next buffer
|
"mouse-1: Switch to previous buffer
|
||||||
mouse-3: Switch to previous buffer")
|
mouse-3: Switch to next buffer")
|
||||||
((doom-modeline--erc-active)
|
((doom-modeline--erc-active)
|
||||||
"mouse-1: Switch to buffer")))
|
"mouse-1: Switch to buffer")))
|
||||||
'mouse-face 'mode-line-highlight
|
'mouse-face 'mode-line-highlight
|
||||||
|
@ -2185,9 +2185,9 @@ mouse-3: Switch to previous buffer")
|
||||||
(cond
|
(cond
|
||||||
((doom-modeline--circe-active)
|
((doom-modeline--circe-active)
|
||||||
(define-key map [mode-line mouse-1]
|
(define-key map [mode-line mouse-1]
|
||||||
#'tracking-next-buffer)
|
#'tracking-previous-buffer)
|
||||||
(define-key map [mode-line mouse-3]
|
(define-key map [mode-line mouse-3]
|
||||||
#'tracking-previous-buffer))
|
#'tracking-next-buffer))
|
||||||
((doom-modeline--erc-active)
|
((doom-modeline--erc-active)
|
||||||
(define-key map [mode-line mouse-1]
|
(define-key map [mode-line mouse-1]
|
||||||
#'erc-switch-to-buffer)))
|
#'erc-switch-to-buffer)))
|
||||||
|
|
Loading…
Add table
Reference in a new issue