update packages and add valign
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
;;; org-fold.el --- Folding of Org entries -*- lexical-binding: t; -*-
|
||||
;;
|
||||
;; Copyright (C) 2020-2025 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2020-2026 Free Software Foundation, Inc.
|
||||
;;
|
||||
;; Author: Ihor Radchenko <yantar92 at posteo dot net>
|
||||
;; Maintainer: Ihor Radchenko <yantar92 at posteo dot net>
|
||||
@@ -59,29 +59,25 @@
|
||||
(defvar org-custom-properties-overlays)
|
||||
(defvar org-element-headline-re)
|
||||
|
||||
(declare-function isearch-filter-visible "isearch" (beg end))
|
||||
(declare-function org-element-type "org-element-ast" (node &optional anonymous))
|
||||
(declare-function org-element-at-point "org-element" (&optional pom cached-only))
|
||||
(declare-function org-element-property "org-element-ast" (property node))
|
||||
(declare-function org-element-end "org-element" (node))
|
||||
(declare-function org-element-post-affiliated "org-element" (node))
|
||||
(declare-function org-element--current-element "org-element" (limit &optional granularity mode structure))
|
||||
(declare-function org-toggle-custom-properties-visibility "org" ())
|
||||
(declare-function org-item-re "org-list" ())
|
||||
(declare-function org-up-heading-safe "org" ())
|
||||
(declare-function org-get-tags "org" (&optional pos local fontify))
|
||||
(declare-function org-get-tags "org" (&optional epom local))
|
||||
(declare-function org-get-valid-level "org" (level &optional change))
|
||||
(declare-function org-before-first-heading-p "org" ())
|
||||
(declare-function org-goto-sibling "org" (&optional previous))
|
||||
(declare-function org-block-map "org" (function &optional start end))
|
||||
(declare-function org-map-region "org" (fun beg end))
|
||||
(declare-function org-end-of-subtree "org" (&optional invisible-ok to-heading))
|
||||
(declare-function org-end-of-subtree "org" (&optional invisible-ok to-heading element))
|
||||
(declare-function org-back-to-heading-or-point-min "org" (&optional invisible-ok))
|
||||
(declare-function org-back-to-heading "org" (&optional invisible-ok))
|
||||
(declare-function org-at-heading-p "org" (&optional invisible-not-ok))
|
||||
(declare-function org-cycle-hide-drawers "org-cycle" (state))
|
||||
|
||||
(declare-function outline-show-branches "outline" ())
|
||||
(declare-function outline-hide-sublevels "outline" (levels))
|
||||
(declare-function outline-get-next-sibling "outline" ())
|
||||
(declare-function outline-invisible-p "outline" (&optional pos))
|
||||
@@ -250,7 +246,7 @@ Also, see `org-fold-catch-invisible-edits'."
|
||||
;; overlays for isearch.
|
||||
(setq-local org-fold-core--isearch-special-specs '(org-link))
|
||||
(org-fold-core-initialize
|
||||
`((,(if (eq org-fold-core-style 'text-properties) 'org-fold-outline 'outline)
|
||||
`((org-fold-outline
|
||||
(:ellipsis . ,ellipsis)
|
||||
(:fragile . ,#'org-fold--reveal-outline-maybe)
|
||||
(:isearch-open . t)
|
||||
@@ -651,7 +647,7 @@ be shown."
|
||||
"Set visibility around point according to DETAIL.
|
||||
DETAIL is either nil, `minimal', `local', `ancestors',
|
||||
`ancestors-full', `lineage', `tree', `canonical' or t. See
|
||||
`org-show-context-detail' for more information."
|
||||
`org-fold-show-context-detail' for more information."
|
||||
;; Show current heading and possibly its entry, following headline
|
||||
;; or all children.
|
||||
(if (and (org-at-heading-p) (not (eq detail 'local)))
|
||||
|
||||
Reference in New Issue
Block a user