summaryrefslogtreecommitdiffhomepage
path: root/completion.org
diff options
context:
space:
mode:
Diffstat (limited to 'completion.org')
-rw-r--r--completion.org3
1 files changed, 1 insertions, 2 deletions
diff --git a/completion.org b/completion.org
index 8ce617f..eb58943 100644
--- a/completion.org
+++ b/completion.org
@@ -102,7 +102,6 @@
("C-x b" . consult-buffer)
("C-x C-b" . consult-buffer)
("C-c b" . project-find-file)
- ("C-c B" . bookmark-set)
("C-c h" . consult-history)
("C-c i" . consult-imenu)
("C-c I" . consult-project-imenu)
@@ -333,7 +332,7 @@
(defun jao-embark-targets--org-link ()
(when (derived-mode-p 'org-mode)
(when (org-in-regexp org-link-bracket-re)
- (let ((lnk (match-string-no-properties 2)))
+ (let ((lnk (match-string-no-properties 1)))
(if (string-match-p "https?://.+" (or lnk ""))
(cons 'url lnk)
(cons 'org-link (match-string-no-properties 0)))))))