You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, [[ mostly behaves like org-backward-element ]] mostly behaves like org-forward-element
These bindings aren't perfect, because if ]] is used on the penultimate element it jumps back instead.
For example
* main heading
** subheading1
** subheading2 (Pressing ]] here goes back to main heading instead of subheading3)
** subheading3
Solution
We can fix this by binding ]] directly to org-forward-element, but since we already have gj and gk for org-forward/backward-element, it might also be an option to bind them to something else.
One idea is to bind [[ to org-previous-visible-heading and ]] to org-next-visible-heading.
Question
What should [[ and ]] be bound to?
Also, what to do with [] and ][?
The text was updated successfully, but these errors were encountered:
Problem
At the moment,
[[
mostly behaves like org-backward-element]]
mostly behaves like org-forward-elementThese bindings aren't perfect, because if
]]
is used on the penultimate element it jumps back instead.For example
Solution
We can fix this by binding
]]
directly toorg-forward-element
, but since we already havegj
andgk
fororg-forward/backward-element
, it might also be an option to bind them to something else.One idea is to bind
[[
toorg-previous-visible-heading
and]]
toorg-next-visible-heading
.Question
What should
[[
and]]
be bound to?Also, what to do with
[]
and][
?The text was updated successfully, but these errors were encountered: