mirror of
https://github.com/org-roam/org-roam
synced 2025-08-03 12:27:23 -05:00
This commit is contained in:
@ -7,6 +7,7 @@
|
||||
### Removed
|
||||
### Fixed
|
||||
- [#2130](https://github.com/org-roam/org-roam/pull/2130) buffer: unlinked-references section now also searches within symlinked directories
|
||||
- [#2152](https://github.com/org-roam/org-roam/pull/2152) org-roam-preview-default-function: doesn't copy copy content of next heading node when current node's content is empty
|
||||
|
||||
### Changed
|
||||
|
||||
|
@ -449,9 +449,11 @@ In interactive calls OTHER-WINDOW is set with
|
||||
|
||||
This function returns the all contents under the current
|
||||
headline, up to the next headline."
|
||||
(let ((beg (progn (org-roam-end-of-meta-data t)
|
||||
(let ((beg (save-excursion
|
||||
(org-roam-end-of-meta-data t)
|
||||
(point)))
|
||||
(end (progn (org-next-visible-heading 1)
|
||||
(end (save-excursion
|
||||
(org-next-visible-heading 1)
|
||||
(point))))
|
||||
(string-trim (buffer-substring-no-properties beg end))))
|
||||
|
||||
|
Reference in New Issue
Block a user