|
@@ -88,12 +88,16 @@ This is the compiled version of the format.")
|
|
|
(org-defkey org-columns-map [down]
|
|
|
(lambda () (interactive)
|
|
|
(let ((col (current-column)))
|
|
|
- (org-no-warnings (next-line))
|
|
|
+ (beginning-of-line 2)
|
|
|
+ (while (and (org-invisible-p2) (not (eobp)))
|
|
|
+ (beginning-of-line 2))
|
|
|
(move-to-column col))))
|
|
|
(org-defkey org-columns-map [up]
|
|
|
(lambda () (interactive)
|
|
|
(let ((col (current-column)))
|
|
|
- (org-no-warnings (previous-line))
|
|
|
+ (beginning-of-line 0)
|
|
|
+ (while (and (org-invisible-p2) (not (bobp)))
|
|
|
+ (beginning-of-line 0))
|
|
|
(move-to-column col))))
|
|
|
(org-defkey org-columns-map [(shift right)] 'org-columns-next-allowed-value)
|
|
|
(org-defkey org-columns-map "n" 'org-columns-next-allowed-value)
|