Function: shrink-window-horizontally

shrink-window-horizontally is an interactive and byte-compiled function defined in window.el.gz.

Signature

(shrink-window-horizontally DELTA)

Documentation

Make selected window DELTA columns narrower.

Interactively, if no argument is given, make selected window one column narrower.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/window.el.gz
(defun shrink-window-horizontally (delta)
  "Make selected window DELTA columns narrower.
Interactively, if no argument is given, make selected window one
column narrower."
  (interactive "p")
  (shrink-window delta t))