From 517f18afb4b5966df67de251fcb20bbbc6e7aa6e Mon Sep 17 00:00:00 2001 From: Jethro Kuan Date: Wed, 14 Apr 2021 02:34:34 +0800 Subject: [PATCH] minor docs --- org-roam-capture.el | 1 + org-roam-completion.el | 11 ++++++++++- org-roam-db.el | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/org-roam-capture.el b/org-roam-capture.el index a491492..453e207 100644 --- a/org-roam-capture.el +++ b/org-roam-capture.el @@ -29,6 +29,7 @@ ;; ;; This library provides capture functionality for org-roam ;;; Code: +;;; ;;;; Library Requires (require 'org-capture) (eval-when-compile diff --git a/org-roam-completion.el b/org-roam-completion.el index f95c9e1..5ac15f2 100644 --- a/org-roam-completion.el +++ b/org-roam-completion.el @@ -27,7 +27,16 @@ ;;; Commentary: ;; -;; This library provides completion-at-point for org-roam. +;; This library provides completion-at-point functions for Org-roam. +;; +;; The two main functions provided to capf are: +;; +;; `org-roam-complete-link-at-point' provides completions to nodes +;; within link brackets +;; +;; `org-roam-complete-everywhere' provides completions for nodes everywhere, +;; matching the symbol at point +;; ;;; Code: (require 'cl-lib) diff --git a/org-roam-db.el b/org-roam-db.el index 255ffb3..2fdc278 100644 --- a/org-roam-db.el +++ b/org-roam-db.el @@ -27,7 +27,7 @@ ;;; Commentary: ;; -;; This library is provides the underlying database api to org-roam +;; This library provides the underlying database api to org-roam. ;; ;;; Code: ;;;; Library Requires