update packages

This commit is contained in:
2025-11-25 19:52:03 +01:00
parent 14ba373378
commit dbbae92267
280 changed files with 13451 additions and 11207 deletions

View File

@@ -1,9 +1,9 @@
;; -*- no-byte-compile: t; lexical-binding: nil -*-
(define-package "visual-fill-column" "20250323.1529"
(define-package "visual-fill-column" "20251110.1039"
"Fill-column for visual-line-mode."
'((emacs "25.1"))
:url "https://codeberg.org/joostkremers/visual-fill-column"
:commit "30fc3e4ea9aa415eccc873e5d7c4f1bbc0491495"
:revdesc "30fc3e4ea9aa"
:commit "9c0ecc2af21d3024a2a838c30d574e86265a52be"
:revdesc "9c0ecc2af21d"
:authors '(("Joost Kremers" . "joostkremers@fastmail.fm"))
:maintainers '(("Joost Kremers" . "joostkremers@fastmail.fm")))

View File

@@ -8,8 +8,8 @@
;; Maintainer: Joost Kremers <joostkremers@fastmail.fm>
;; URL: https://codeberg.org/joostkremers/visual-fill-column
;; Created: 2015
;; Package-Version: 20250323.1529
;; Package-Revision: 30fc3e4ea9aa
;; Package-Version: 20251110.1039
;; Package-Revision: 9c0ecc2af21d
;; Package-Requires: ((emacs "25.1"))
;; This file is NOT part of GNU Emacs.
@@ -146,11 +146,13 @@ the text scale factor, so that the text is wrapped at
(define-minor-mode visual-fill-column-mode
"Soft-wrap lines according to `fill-column'.
This minor mode narrows the text area. Its primary use is in
conjunction with `visual-line-mode', to enable soft word-wrapping
of long lines, but it can also be used in other contexts, e.g.,
to center the text in a window. To activate it together with
`visual-line-mode', it is usually best to use
`visual-line-fill-column-mode'."
conjunction with `visual-line-mode', to enable soft word-wrapping of
long lines, but it can also be used in other contexts, e.g., to center
the text in a window.
Note: to activate and deactivate `visual-fill-column-mode' together with
`visual-line-mode', add the function `visual-fill-column' to
`visual-line-mode-hook'."
:init-value nil :lighter nil :global nil
(if visual-fill-column-mode
(visual-fill-column-mode--enable)
@@ -161,18 +163,29 @@ to center the text in a window. To activate it together with
:require 'visual-fill-column-mode
:group 'visual-fill-column)
;;;###autoload
(defun visual-fill-column-for-vline ()
"Hook function for `visual-line-mode-hook'.
Use this function to enable and disable `visual-fill-column-mode' in
conjunction with `visual-line-mode'."
(if visual-line-mode
(visual-fill-column-mode +1)
(visual-fill-column-mode -1)))
;;;###autoload
(define-minor-mode visual-line-fill-column-mode
"Enable `visual-line-mode' and soft-wrap lines according to `fill-column'.
Use this mode to activate and deactivate `visual-line-mode' and
`visual-fill-column-mode' in conjunction."
"Enable `visual-line-mode' and soft-wrap lines according to `fill-column'."
:init-value nil :lighter nil :global nil
(cond (visual-line-fill-column-mode
(visual-fill-column-mode 1)
(visual-line-mode 1))
(t
(visual-fill-column-mode -1)
(visual-line-mode -1))))
(visual-fill-column-mode 1)
(visual-line-mode 1))
(t
(visual-fill-column-mode -1)
(visual-line-mode -1))))
(make-obsolete 'visual-line-fill-column-mode
"add `visual-fill-column-for-vline' to `visual-line-mode-hook' instead."
"2.7.0")
(defun visual-fill-column-toggle-center-text ()
"Toggle centering of text in the current buffer."