Reputation: 169
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:
Can we achieve this in emacs? I googled and looked at the emacs lisp manual, but get nothing.
Upvotes: 2
Views: 344
Reputation: 4804
Try something like this:
(defun my-frame ()
(interactive)
(make-frame '((width . 22)
(height . 22)
(minibuffer . nil))))
Upvotes: 1