;;; org-zettelkasten-counsel.el --- Helper functions to use Zettelkasten in org-mode -*- lexical-binding: t; -*- ;; Author: Yann Herklotz ;; Created: 2022 ;; Version: 0.3.0 ;; Package-Requires: ((emacs "24.3") (consult "0.20")) ;; Keywords: files, hypermedia, Org, notes ;; Homepage: https://github.com/ymherklotz/emacs-zettelkasten ;; This program is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see . ;;; Commentary: ;; These functions allow for the use of the zettelkasten method in org-mode. ;; ;; It uses the CUSTOM_ID property to store a permanent ID to the note, ;; which are organised in the same fashion as the notes by Luhmann. ;;; Code: (require 'counsel) (defun org-zettelkasten-counsel-search-current-id () "Use `counsel-rg' to search for the current ID in all files." (interactive) (let ((current-id (org-entry-get nil "CUSTOM_ID"))) (counsel-rg (concat "#" current-id) org-zettelkasten-directory "-g *.org" "ID: "))) (provide 'org-zettelkasten-counsel) ;;; org-zettelkasten-counsel.el ends here