Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
c0d7f7fc
Commit
c0d7f7fc
authored
Feb 23, 2024
by
Stefan Monnier
Browse files
Merge remote-tracking branch 'refs/remotes/origin/master'
parents
3599a9a1
2b7dc7fe
Pipeline
#28310
failed with stage
in 3 minutes and 48 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
7 deletions
+13
-7
lisp/progmodes/flymake.el
lisp/progmodes/flymake.el
+13
-7
No files found.
lisp/progmodes/flymake.el
View file @
c0d7f7fc
...
...
@@ -1569,13 +1569,19 @@ correctly.")
,
flymake-mode-line-lighter
mouse-face
mode-line-highlight
help-echo
,
(
lambda
(
&rest
_
)
(
concat
(
format
"%s known backends\n"
(
hash-table-count
flymake--state
))
(
format
"%s running\n"
(
length
(
flymake-running-backends
)))
(
format
"%s disabled\n"
(
length
(
flymake-disabled-backends
)))
"mouse-1: Display minor mode menu\n"
"mouse-2: Show help for minor mode"
))
,
(
lambda
(
w
&rest
_
)
(
with-current-buffer
(
window-buffer
w
)
;; Mouse can activate tool-tip without window being active.
;; `flymake--state' is buffer local and is null when line
;; lighter appears in *Help* `describe-mode'.
(
concat
(
unless
(
null
flymake--state
)
(
concat
(
format
"%s known backends\n"
(
hash-table-count
flymake--state
))
(
format
"%s running\n"
(
length
(
flymake-running-backends
)))
(
format
"%s disabled\n"
(
length
(
flymake-disabled-backends
)))))
"mouse-1: Display minor mode menu\n"
"mouse-2: Show help for minor mode"
)))
keymap
,
(
let
((
map
(
make-sparse-keymap
)))
(
define-key
map
[mode-line
down-mouse-1]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment