From ff69dd3500ec8a8c44960f0327261a03449693e4 Mon Sep 17 00:00:00 2001 From: KemoNine Date: Wed, 2 Oct 2024 10:49:37 -0400 Subject: [PATCH] add obsidian uri handler --- init.el | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/init.el b/init.el index d6c18a7..2d667b8 100644 --- a/init.el +++ b/init.el @@ -875,6 +875,9 @@ position between last non-whitespace and `end-of-line'." (goto-char 0) ) +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +; disable toolbar in gui + (tool-bar-mode -1) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -1385,6 +1388,22 @@ position between last non-whitespace and `end-of-line'." (funcall helm-fun origfun start end collection predicate) (setq helm-crm-default-separator tcrmds)) +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +; obsidian link handler from https://forum.obsidian.md/t/emacs-on-macos-org-mode-link-handler-for-obsidian-links/19230 + + ;; obsidan link handling for obsidian:// links + (defun org-obsidian-link-open (slash-message-id) + "Handler for org-link-set-parameters that opens a obsidian:// link in obsidian" + ;; remove any / at the start of slash-message-id to create real note-id + (let ((message-id + (replace-regexp-in-string (rx bos (* "/")) + "" + slash-message-id))) + (async-shell-command (concat "/c/Users/mcros/AppData/Local/Programs/Obsidian/Obsidian.exe \"obsidian://" message-id "\"")))) + + ;; on obsdian://aoeu link, this will call handler with //aoeu + (org-link-set-parameters "obsidian" :follow #'org-obsidian-link-open) + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ui tuning