diff --git a/lisp/org-colview.el b/lisp/org-colview.el index 850ac0069..2f25f5641 100644 --- a/lisp/org-colview.el +++ b/lisp/org-colview.el @@ -781,6 +781,7 @@ view for the whole buffer unconditionally. When COLUMNS-FMT-STRING is non-nil, use it as the column format." (interactive "P") (org-columns-remove-overlays) + (when global (goto-char (point-min))) (move-marker org-columns-begin-marker (point)) (org-columns-goto-top-level) ;; Initialize `org-columns-current-fmt' and diff --git a/testing/lisp/test-org-colview.el b/testing/lisp/test-org-colview.el index 29512032a..7bf385acc 100644 --- a/testing/lisp/test-org-colview.el +++ b/testing/lisp/test-org-colview.el @@ -104,9 +104,10 @@ (lambda () (get-char-property (point) 'org-columns-value)))))) (should (equal - '("H1" "H2" "H3" "H4") - (org-test-with-temp-text "Top\n* H1\n** H2\n*** H3\n* H4" - (let ((org-columns-default-format "%ITEM")) (org-columns t)) + '("1" "1") + (org-test-with-temp-text + "Top\n* H1\n** H2\n:PROPERTIES:\n:A: 1\n:END:" + (let ((org-columns-default-format "%A{+}")) (org-columns t)) (org-map-entries (lambda () (get-char-property (point) 'org-columns-value)))))))