all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#65307: 29.1; Add variable-pitch-text-mode minor mode (or customization for variable-pitch-mode)
@ 2023-08-15  8:43 Rudi Schlatte
  0 siblings, 0 replies; only message in thread
From: Rudi Schlatte @ 2023-08-15  8:43 UTC (permalink / raw)
  To: 65307

Hello,

Emacs 29.1 added the face `variable-pitch-text`, which looks nicer when
combined with fixed-width text in a buffer.  This happens for example in
org-mode buffers that contain both text and code snippets.

The existing minor mode `variable-pitch-mode` uses the face
`variable-pitch`.  It would be nice to either have a
`variable-pitch-text-mode` minor mode, or a customization that lets the
user choose between the `variable-pitch` and `variable-pitch-text` faces
for `variable-pitch-mode`.

`variable-pitch-text-mode` can be trivially defined by copy-and-pasting
`variable-pitch-mode` in face-remap.el:

(defun variable-pitch-text-mode (&optional arg)
  "Variable-pitch-text default-face mode.
An interface to `buffer-face-mode' which uses the `variable-pitch-text' face.
Besides the choice of face, it is the same as `variable-pitch-mode'."
  (interactive (list (or current-prefix-arg 'toggle)))
  (buffer-face-mode-invoke 'variable-pitch-text (or arg t)
			   (called-interactively-p 'interactive)))






^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-08-15  8:43 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-15  8:43 bug#65307: 29.1; Add variable-pitch-text-mode minor mode (or customization for variable-pitch-mode) Rudi Schlatte

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.