Function: kvspec:toggle-blank-lines
kvspec:toggle-blank-lines is an interactive and byte-compiled function
defined in kvspec.el.
Signature
(kvspec:toggle-blank-lines)
Documentation
Toggle blank lines between cells on or off.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kvspec.el
(defun kvspec:toggle-blank-lines ()
"Toggle blank lines between cells on or off."
(interactive)
(setq kvspec:current
(if (string-match "b" kvspec:current)
(replace-regexp-in-string "b" "" kvspec:current nil t)
(concat "b" kvspec:current)))
(kvspec:blank-lines)
(kvspec:update-modeline))