Fork me on GitHub
#emacs
<
2022-02-04
>
Zaymon06:02:17

Is there a way to open this doc popup into its own window?

ericdallo11:02:01

You can have that popup showing on eldoc instead of lsp-ui

🙌 1
robert-stuttaford11:02:11

at a certain height, emacs starts making new modals appear below the current buffer, instead of to the side. does anyone perhaps know what setting controls this?

AC19:02:44

take a look at split-width-threshold and split-height-threshold they probably do what you want.

robert-stuttaford05:02:40

perfecto thank you @U0124C56J5R!

👍 1
teodorlu14:02:32

I've been thinking that making commits would be easier if they all just had the same commit message.

(defun teod/thinking-face ()
  (interactive)
  (insert "🤔"))

(defun teod/buffer-set-content-thinking-face ()
  (interactive)
  (erase-buffer)
  (teod/thinking-face))
😈

teodorlu14:02:55

last one is suited for Magit commit message buffers!

Carlo19:02:14

in emacs, we have the function cider-pprint-eval-defun-at-point that sends the result of a top-level from to a buffer named *cider-result* . The nice thing about that window is that the output is pretty printed. Can I use the same window to display the last tap>? In general, do we have a way of looking at pretty-printed tapped values from emacs?

Ben Sless21:02:57

I opened a feature request in cider for that some time ago, I will probably get in soonish I hope

🙌 1