update of packages
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
This is org-roam.info, produced by makeinfo version 7.0.1 from
|
||||
This is org-roam.info, produced by makeinfo version 6.8 from
|
||||
org-roam.texi.
|
||||
|
||||
Copyright (C) 2020-2022 Jethro Kuan <jethrokuan95@gmail.com>
|
||||
@@ -24,7 +24,8 @@ File: org-roam.info, Node: Top, Next: Introduction, Up: (dir)
|
||||
Org-roam User Manual
|
||||
********************
|
||||
|
||||
This manual is for Org-roam version 2.2.2.
|
||||
|
||||
This manual is for Org-roam version 2.2.2.
|
||||
|
||||
Copyright (C) 2020-2022 Jethro Kuan <jethrokuan95@gmail.com>
|
||||
|
||||
@@ -391,14 +392,6 @@ reading the documentation in the Emacs manual, see *note
|
||||
|
||||
Org-roam also depends on a recent version of Org, which can be
|
||||
obtained in Org’s package repository (see *note (org)Installation::).
|
||||
To use Org’s ELPA archive:
|
||||
|
||||
(add-to-list 'package-archives '("org" . "https://orgmode.org/elpa/") t)
|
||||
|
||||
Once you have added your preferred archive, you need to update the
|
||||
local package list using:
|
||||
|
||||
M-x package-refresh-contents RET
|
||||
|
||||
Once you have done that, you can install Org-roam and its
|
||||
dependencies using:
|
||||
@@ -786,19 +779,25 @@ set:
|
||||
|
||||
(setq org-roam-database-connector 'sqlite3)
|
||||
|
||||
**emacsql-libsqlite3**
|
||||
(https://github.com/emacscollective/emacsql-libsqlite3/)
|
||||
**emacssql-sqlite-module**
|
||||
(https://melpa.org/#/emacsql-sqlite-module) (previously
|
||||
emacsql-libsqlite3)
|
||||
|
||||
‘emacs-libsqlite3’ is a relatively young package which uses an Emacs
|
||||
module that exposes parts of the SQLite C API to Emacs Lisp, instead of
|
||||
using subprocess as ‘emacsql-sqlite’ does. It is expected to be a more
|
||||
performant drop-in replacement for ‘emacs-sqlite’.
|
||||
‘emacs-sqlite-module’ is a relatively young package which uses an
|
||||
Emacs module that exposes parts of the SQLite C API to Emacs Lisp,
|
||||
instead of using subprocess as ‘emacsql-sqlite’ does. It is expected to
|
||||
be a more performant drop-in replacement for ‘emacs-sqlite’.
|
||||
|
||||
At the moment it is experimental and does not work well with the SQL
|
||||
query load required by Org-roam, but you may still try it by ensuring
|
||||
the package is installed and setting:
|
||||
(setq org-roam-database-connector 'sqlite-module)
|
||||
|
||||
(setq org-roam-database-connector 'libsqlite3)
|
||||
**emacsql-sqlite-builtin**
|
||||
(https://melpa.org/#/emacsql-sqlite-builtin)
|
||||
|
||||
‘emacsql-sqlite-builtin’ uses the in-built SQLite support for Emacs
|
||||
29 and later. This is the recommended option if you are using a version
|
||||
of Emacs that supports it.
|
||||
|
||||
(setq org-roam-database-connector 'sqlite-builtin)
|
||||
|
||||
|
||||
File: org-roam.info, Node: What to cache, Next: When to cache, Prev: How to cache, Up: Customizing Node Caching
|
||||
@@ -1868,7 +1867,7 @@ File: org-roam.info, Node: Garbage Collection, Up: Performance Optimization
|
||||
During the cache-build process, Org-roam generates a lot of in-memory
|
||||
data-structures (such as the Org file’s AST), which are discarded after
|
||||
use. These structures are garbage collected at regular intervals (see
|
||||
*note info:elisp#Garbage Collection: (elisp)Garbage Collection.).
|
||||
*note info:elisp#Garbage Collection: (elisp)Garbage Collection.).
|
||||
|
||||
Org-roam provides the option ‘org-roam-db-gc-threshold’ to
|
||||
temporarily change the threshold value for GC to be triggered during
|
||||
@@ -2621,97 +2620,97 @@ Emacs 29.0.50 (Org mode 9.6)
|
||||
|
||||
|
||||
Tag Table:
|
||||
Node: Top756
|
||||
Node: Introduction4512
|
||||
Ref: Introduction-Footnote-16657
|
||||
Node: Target Audience6766
|
||||
Node: A Brief Introduction to the Zettelkasten Method8642
|
||||
Node: Installation11800
|
||||
Node: Installing from MELPA12164
|
||||
Node: Installing from Source13423
|
||||
Node: Installation Troubleshooting16406
|
||||
Node: C Compiler16608
|
||||
Node: C Compiler for Windows17179
|
||||
Node: Getting Started18420
|
||||
Node: The Org-roam Node18712
|
||||
Node: Links between Nodes19540
|
||||
Node: Setting up Org-roam19945
|
||||
Node: Creating and Linking Nodes21552
|
||||
Node: Customizing Node Completions23272
|
||||
Node: Customizing Node Caching25492
|
||||
Node: How to cache25728
|
||||
Node: What to cache27764
|
||||
Node: When to cache29892
|
||||
Node: The Org-roam Buffer30661
|
||||
Node: Navigating the Org-roam Buffer32117
|
||||
Node: Configuring what is displayed in the buffer32833
|
||||
Node: Configuring the Org-roam buffer display34164
|
||||
Node: Styling the Org-roam buffer35665
|
||||
Node: Node Properties35877
|
||||
Node: Standard Org properties36096
|
||||
Node: Titles and Aliases36446
|
||||
Node: Tags37447
|
||||
Node: Refs38107
|
||||
Node: Citations39307
|
||||
Node: Using the Cached Information39873
|
||||
Node: Completion41020
|
||||
Node: Completing within Link Brackets41816
|
||||
Node: Completing anywhere42266
|
||||
Node: Encryption43042
|
||||
Node: The Templating System43798
|
||||
Node: Template Walkthrough44515
|
||||
Node: Org-roam Template Expansion46359
|
||||
Node: Extensions48246
|
||||
Node: org-roam-protocol48482
|
||||
Node: Installation (1)48944
|
||||
Node: Linux49786
|
||||
Node: Mac OS51312
|
||||
Ref: Testing org-protocol53350
|
||||
Node: Windows54363
|
||||
Node: The roam-node protocol55106
|
||||
Node: The roam-ref protocol55493
|
||||
Node: org-roam-graph56672
|
||||
Node: Graph Options58569
|
||||
Node: org-roam-dailies59591
|
||||
Node: Configuration59878
|
||||
Node: Usage60675
|
||||
Node: org-roam-export62417
|
||||
Node: Performance Optimization62937
|
||||
Node: Garbage Collection63143
|
||||
Node: The Org-mode Ecosystem63939
|
||||
Node: Browsing History with winner-mode64436
|
||||
Node: Versioning Notes65308
|
||||
Node: Full-text search with Deft66099
|
||||
Node: Org-journal66850
|
||||
Node: Org-download67662
|
||||
Node: mathpixel68181
|
||||
Node: Org-noter / Interleave68762
|
||||
Node: Bibliography69154
|
||||
Node: Spaced Repetition69915
|
||||
Node: FAQ70571
|
||||
Node: How do I have more than one Org-roam directory?71178
|
||||
Node: How do I create a note whose title already matches one of the candidates?72749
|
||||
Node: How can I stop Org-roam from creating IDs everywhere?73669
|
||||
Node: How do I migrate from Roam Research?74363
|
||||
Node: How to migrate from Org-roam v1?74860
|
||||
Node: How do I publish my notes with an Internet-friendly graph?76269
|
||||
Node: Configure org-mode for publishing77711
|
||||
Node: Overriding the default link creation function79197
|
||||
Node: Copying the generated file to the export directory79869
|
||||
Node: I'm seeing this ``Selecting deleted buffer'' error What do I do?80840
|
||||
Node: Developer's Guide to Org-roam81898
|
||||
Node: Org-roam's Design Principle82172
|
||||
Node: Building Extensions and Advanced Customization of Org-roam84162
|
||||
Node: Accessing the Database85424
|
||||
Node: Accessing and Modifying Nodes86153
|
||||
Node: Extending the Capture System88029
|
||||
Node: Appendix89571
|
||||
Node: Note-taking Workflows89758
|
||||
Node: Ecosystem91040
|
||||
Node: Keystroke Index91157
|
||||
Node: Command Index91308
|
||||
Node: Function Index91461
|
||||
Node: Variable Index93239
|
||||
Node: Top754
|
||||
Node: Introduction4514
|
||||
Ref: Introduction-Footnote-16659
|
||||
Node: Target Audience6768
|
||||
Node: A Brief Introduction to the Zettelkasten Method8644
|
||||
Node: Installation11802
|
||||
Node: Installing from MELPA12166
|
||||
Node: Installing from Source13181
|
||||
Node: Installation Troubleshooting16164
|
||||
Node: C Compiler16366
|
||||
Node: C Compiler for Windows16937
|
||||
Node: Getting Started18178
|
||||
Node: The Org-roam Node18470
|
||||
Node: Links between Nodes19298
|
||||
Node: Setting up Org-roam19703
|
||||
Node: Creating and Linking Nodes21310
|
||||
Node: Customizing Node Completions23030
|
||||
Node: Customizing Node Caching25250
|
||||
Node: How to cache25486
|
||||
Node: What to cache27679
|
||||
Node: When to cache29807
|
||||
Node: The Org-roam Buffer30576
|
||||
Node: Navigating the Org-roam Buffer32032
|
||||
Node: Configuring what is displayed in the buffer32748
|
||||
Node: Configuring the Org-roam buffer display34079
|
||||
Node: Styling the Org-roam buffer35580
|
||||
Node: Node Properties35792
|
||||
Node: Standard Org properties36011
|
||||
Node: Titles and Aliases36361
|
||||
Node: Tags37362
|
||||
Node: Refs38022
|
||||
Node: Citations39222
|
||||
Node: Using the Cached Information39788
|
||||
Node: Completion40935
|
||||
Node: Completing within Link Brackets41731
|
||||
Node: Completing anywhere42181
|
||||
Node: Encryption42957
|
||||
Node: The Templating System43713
|
||||
Node: Template Walkthrough44430
|
||||
Node: Org-roam Template Expansion46274
|
||||
Node: Extensions48161
|
||||
Node: org-roam-protocol48397
|
||||
Node: Installation (1)48859
|
||||
Node: Linux49701
|
||||
Node: Mac OS51227
|
||||
Ref: Testing org-protocol53265
|
||||
Node: Windows54278
|
||||
Node: The roam-node protocol55021
|
||||
Node: The roam-ref protocol55408
|
||||
Node: org-roam-graph56587
|
||||
Node: Graph Options58484
|
||||
Node: org-roam-dailies59506
|
||||
Node: Configuration59793
|
||||
Node: Usage60590
|
||||
Node: org-roam-export62332
|
||||
Node: Performance Optimization62852
|
||||
Node: Garbage Collection63058
|
||||
Node: The Org-mode Ecosystem63852
|
||||
Node: Browsing History with winner-mode64349
|
||||
Node: Versioning Notes65221
|
||||
Node: Full-text search with Deft66012
|
||||
Node: Org-journal66763
|
||||
Node: Org-download67575
|
||||
Node: mathpixel68094
|
||||
Node: Org-noter / Interleave68675
|
||||
Node: Bibliography69067
|
||||
Node: Spaced Repetition69828
|
||||
Node: FAQ70484
|
||||
Node: How do I have more than one Org-roam directory?71091
|
||||
Node: How do I create a note whose title already matches one of the candidates?72662
|
||||
Node: How can I stop Org-roam from creating IDs everywhere?73582
|
||||
Node: How do I migrate from Roam Research?74276
|
||||
Node: How to migrate from Org-roam v1?74773
|
||||
Node: How do I publish my notes with an Internet-friendly graph?76182
|
||||
Node: Configure org-mode for publishing77624
|
||||
Node: Overriding the default link creation function79110
|
||||
Node: Copying the generated file to the export directory79782
|
||||
Node: I'm seeing this ``Selecting deleted buffer'' error What do I do?80753
|
||||
Node: Developer's Guide to Org-roam81811
|
||||
Node: Org-roam's Design Principle82085
|
||||
Node: Building Extensions and Advanced Customization of Org-roam84075
|
||||
Node: Accessing the Database85337
|
||||
Node: Accessing and Modifying Nodes86066
|
||||
Node: Extending the Capture System87942
|
||||
Node: Appendix89484
|
||||
Node: Note-taking Workflows89671
|
||||
Node: Ecosystem90953
|
||||
Node: Keystroke Index91070
|
||||
Node: Command Index91221
|
||||
Node: Function Index91374
|
||||
Node: Variable Index93152
|
||||
|
||||
End Tag Table
|
||||
|
||||
|
||||
Reference in New Issue
Block a user