Emacs: Toggle Line Spacing Command 🚀

By Xah Lee. Date: . Last updated: .

Toggle Line Spacing Command

Here's a command that lets you toggle line spacing between 2 values.

This is useful for switching between reading source code and reading novels. [see Emacs: Novel Reading Mode 🚀]

put this in your Emacs Init File:

(defun xah-toggle-line-spacing ()
  "Toggle line spacing between no extra space to extra half line height.
URL `http://xahlee.info/emacs/emacs/emacs_toggle_line_spacing.html'
Version 2017-06-02"
  (interactive)
  (if line-spacing
      (setq line-spacing nil)
    (setq line-spacing 0.5))
  (redraw-frame (selected-frame)))

Emacs Line Height