From 84a5d8475f12acfc2044e11601ae0a35bfaf10e9 Mon Sep 17 00:00:00 2001 From: jethrokuan Date: Sun, 16 Jan 2022 05:36:54 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20=20@=205b151?= =?UTF-8?q?59a2c43aeb1400642b80050ba7e8fd87a0b=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manual.html | 7 ++++++- org-roam.org | 7 ++++++- org-roam.texi | 7 ++++++- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/manual.html b/manual.html index 7bfc968..09d8b58 100644 --- a/manual.html +++ b/manual.html @@ -811,8 +811,13 @@ for notes. This variable needs to be set before any calls to Org-roam functions.

The file-truename function is only necessary when you use symbolic links -inside org-roam-directory: Org-roam does not resolve symbolic links. +inside org-roam-directory: Org-roam does not resolve symbolic links. One can +however instruct Emacs to always resolve symlinks, at a performance cost:

+
+
(setq find-file-visit-truename t)
+
+

Next, we setup Org-roam to run functions on file changes to maintain cache consistency. This is achieved by running M-x org-roam-db-autosync-mode. To ensure that Org-roam is available on startup, place this in your Emacs diff --git a/org-roam.org b/org-roam.org index 24d2c63..500fdae 100644 --- a/org-roam.org +++ b/org-roam.org @@ -369,7 +369,12 @@ For this tutorial, create an empty directory, and set ~org-roam-directory~: #+END_SRC The ~file-truename~ function is only necessary when you use symbolic links -inside ~org-roam-directory~: Org-roam does not resolve symbolic links. +inside ~org-roam-directory~: Org-roam does not resolve symbolic links. One can +however instruct Emacs to always resolve symlinks, at a performance cost: + +#+begin_src emacs-lisp + (setq find-file-visit-truename t) +#+end_src Next, we setup Org-roam to run functions on file changes to maintain cache consistency. This is achieved by running ~M-x org-roam-db-autosync-mode~. To diff --git a/org-roam.texi b/org-roam.texi index 17f52f7..03f58fd 100644 --- a/org-roam.texi +++ b/org-roam.texi @@ -652,7 +652,12 @@ For this tutorial, create an empty directory, and set @code{org-roam-directory}: @end lisp The @code{file-truename} function is only necessary when you use symbolic links -inside @code{org-roam-directory}: Org-roam does not resolve symbolic links. +inside @code{org-roam-directory}: Org-roam does not resolve symbolic links. One can +however instruct Emacs to always resolve symlinks, at a performance cost: + +@lisp +(setq find-file-visit-truename t) +@end lisp Next, we setup Org-roam to run functions on file changes to maintain cache consistency. This is achieved by running @code{M-x org-roam-db-autosync-mode}. To