xsj0jsx
xsj0jsx

Reputation: 169

Can we have a Non-rectangular window in emacs?

I thought it may be usefull to have a smaller window display other buffer's information in a bigger window which we're working on.

Here is an illustration:

an illustration

Can we achieve this in emacs? I googled and looked at the emacs lisp manual, but get nothing.

Upvotes: 2

Views: 344

Answers (1)

Andreas Röhler
Andreas Röhler

Reputation: 4804

Try something like this:

(defun my-frame ()
  (interactive)
  (make-frame '((width . 22)
                (height . 22)
                (minibuffer . nil))))

Upvotes: 1

Related Questions