Emacs: Toggle Line Spacing Command 📜
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
Emacs Lines, Column, Cursor Position
Soft-Wrap Lines
- Emacs: Visual Line Mode
- Emacs: Toggle Word Wrap
- Emacs: Line Wrap
- Emacs: Novel Reading Mode 📜
- Emacs: Toggle Line Spacing Command 📜
Reformat Lines
- Emacs: Hard-Wrap Lines (fill-region)
- Emacs: Reformat to Long Lines (unfill-region) 📜
- Emacs: Reformat Lines for Source Code 📜