I know you can change the frame size in the .emacs file with set-frame-width or (add-to-list 'default-frame-alist '(width . 80)) but how can I change the width after Emacs has started up (aside from dragging the edge of the frame)?
I know you can change the frame size in the .emacs file with set-frame-width
Share
Well, go to the
*scratch*buffer and useset-frame-width.set-frame-widthisn’t interactive, so you can’t run it withM-xbut you could trivially write a set-frame-width-interactive, something likeNow
C-u 8 0 M-x set-frame-width-interactivewill set the width to 80.Is this what you’re trying to do?