You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I call eldoc on a variable in rust, it shows following documentation in the buffer:
// size = 8, align = 0x8
let next_v: u64
But when the documentation is shown in echo area (e.g., via commands defined in eldoc-message-commands), only the first line is displayed. How can I make it display all lines?
the relevant config is:
(setq eldoc-documentation-strategy 'eldoc-documentation-compose)
(setq
semantic-idle-truncate-long-summaries nil
eldoc-echo-area-use-multiline-p t
max-mini-window-height 0.5)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
When I call
eldoc
on a variable in rust, it shows following documentation in the buffer:But when the documentation is shown in echo area (e.g., via commands defined in
eldoc-message-commands
), only the first line is displayed. How can I make it display all lines?the relevant config is:
Beta Was this translation helpful? Give feedback.
All reactions