mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-16 08:50:08 +00:00
9 lines
221 B
EmacsLisp
9 lines
221 B
EmacsLisp
(defun terminal-80-columns ()
|
|
(interactive)
|
|
(send-string-to-terminal "\033[?3l")
|
|
(set-frame-width 80))
|
|
|
|
(defun terminal-132-columns ()
|
|
(interactive)
|
|
(send-string-to-terminal "\033[?3h")
|
|
(set-frame-width 132))
|