mirror of
https://github.com/ch11ng/exwm.git
synced 2024-11-23 19:47:58 +01:00
Merge branch 'Curiosidad-Racional/patch-1' into externals/exwm
This commit is contained in:
commit
95d6aa96cf
1 changed files with 13 additions and 13 deletions
|
@ -750,20 +750,20 @@ button event."
|
||||||
"Update the propertized `mode-line-process' for window ID."
|
"Update the propertized `mode-line-process' for window ID."
|
||||||
(exwm--log "#x%x" id)
|
(exwm--log "#x%x" id)
|
||||||
(let (help-echo cmd mode)
|
(let (help-echo cmd mode)
|
||||||
(cl-case exwm--input-mode
|
|
||||||
(line-mode
|
|
||||||
(setq mode "line"
|
|
||||||
help-echo "mouse-1: Switch to char-mode"
|
|
||||||
cmd (lambda ()
|
|
||||||
(interactive)
|
|
||||||
(exwm-input-release-keyboard id))))
|
|
||||||
(char-mode
|
|
||||||
(setq mode "char"
|
|
||||||
help-echo "mouse-1: Switch to line-mode"
|
|
||||||
cmd (lambda ()
|
|
||||||
(interactive)
|
|
||||||
(exwm-input-grab-keyboard id)))))
|
|
||||||
(with-current-buffer (exwm--id->buffer id)
|
(with-current-buffer (exwm--id->buffer id)
|
||||||
|
(cl-case exwm--input-mode
|
||||||
|
(line-mode
|
||||||
|
(setq mode "line"
|
||||||
|
help-echo "mouse-1: Switch to char-mode"
|
||||||
|
cmd (lambda ()
|
||||||
|
(interactive)
|
||||||
|
(exwm-input-release-keyboard id))))
|
||||||
|
(char-mode
|
||||||
|
(setq mode "char"
|
||||||
|
help-echo "mouse-1: Switch to line-mode"
|
||||||
|
cmd (lambda ()
|
||||||
|
(interactive)
|
||||||
|
(exwm-input-grab-keyboard id)))))
|
||||||
(setq mode-line-process
|
(setq mode-line-process
|
||||||
`(": "
|
`(": "
|
||||||
(:propertize ,mode
|
(:propertize ,mode
|
||||||
|
|
Loading…
Reference in a new issue