summary refs log tree commit diff stats
path: root/lisp/+org.el
diff options
context:
space:
mode:
authorCase Duckworth2022-01-18 18:16:32 -0600
committerCase Duckworth2022-01-18 18:16:32 -0600
commit81c6f178545fcb3e581dd249de1ef22521f7c376 (patch)
tree07581afc1e9bffb6a547981afb21a1bd9ee17f5b /lisp/+org.el
parentAhh (diff)
parentUm (diff)
downloademacs-81c6f178545fcb3e581dd249de1ef22521f7c376.tar.gz
emacs-81c6f178545fcb3e581dd249de1ef22521f7c376.zip
Hm.
Diffstat (limited to 'lisp/+org.el')
-rw-r--r--lisp/+org.el8
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/+org.el b/lisp/+org.el index 0f2c625..57a4a16 100644 --- a/lisp/+org.el +++ b/lisp/+org.el
@@ -433,8 +433,12 @@ the deletion might narrow the column."
433 (when (and (memq this-char-type types) (memq prev-char-type types)) 433 (when (and (memq this-char-type types) (memq prev-char-type types))
434 (backward-char) 434 (backward-char)
435 (setq type prev-char-type)) ; what the fuckckckckck 435 (setq type prev-char-type)) ; what the fuckckckckck
436 (if (memq type types) 436 ;; Okay, so this ^ is pretty janky and doesn't /really/ work that well,
437 (progn (org-open-at-point arg)) 437 ;; especially on DEADLINE (and probably SCHEDULED) lines. However, since
438 ;; I really just want to open the list of URLs /most of the time/, I'm
439 ;; fixing it like this instead.
440 (unless (and (memq type types)
441 (ignore-errors (org-open-at-point arg)))
438 (while (not 442 (while (not
439 (progn 443 (progn
440 (org-back-to-heading) 444 (org-back-to-heading)