mirror of
https://github.com/org-roam/org-roam
synced 2025-09-08 15:23:30 -05:00
Deploying to gh-pages from @ e997c017de
🚀
This commit is contained in:
18
manual.html
18
manual.html
@@ -981,11 +981,11 @@ the user. The author’s recommended configuration is as follows:
|
|||||||
</p>
|
</p>
|
||||||
<div class="lisp">
|
<div class="lisp">
|
||||||
<pre class="lisp">(add-to-list 'display-buffer-alist
|
<pre class="lisp">(add-to-list 'display-buffer-alist
|
||||||
'(("\\*org-roam\\*"
|
'("\\*org-roam\\*"
|
||||||
(display-buffer-in-direction)
|
(display-buffer-in-direction)
|
||||||
(direction . right)
|
(direction . right)
|
||||||
(window-width . 0.33)
|
(window-width . 0.33)
|
||||||
(window-height . fit-window-to-buffer))))
|
(window-height . fit-window-to-buffer)))
|
||||||
</pre></div>
|
</pre></div>
|
||||||
|
|
||||||
<p>Crucially, the window is a regular window (not a side-window), and this allows
|
<p>Crucially, the window is a regular window (not a side-window), and this allows
|
||||||
@@ -998,6 +998,20 @@ Org-roam buffer.
|
|||||||
</li><li> <code>C-u RET</code> navigates to thing-at-point in the other window.
|
</li><li> <code>C-u RET</code> navigates to thing-at-point in the other window.
|
||||||
</li></ul>
|
</li></ul>
|
||||||
|
|
||||||
|
<p>For users that prefer using a side-window for the org-roam buffer, the following
|
||||||
|
example configuration should provide a good starting point:
|
||||||
|
</p>
|
||||||
|
<div class="lisp">
|
||||||
|
<pre class="lisp"> (add-to-list 'display-buffer-alist
|
||||||
|
'("\\*org-roam\\*"
|
||||||
|
(display-buffer-in-side-window)
|
||||||
|
(side . right)
|
||||||
|
(slot . 0)
|
||||||
|
(window-width . 0.33)
|
||||||
|
(window-parameters . ((no-other-window . t)
|
||||||
|
(no-delete-other-windows . t)))))
|
||||||
|
</pre></div>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<span id="Styling-the-Org_002droam-buffer"></span><div class="header">
|
<span id="Styling-the-Org_002droam-buffer"></span><div class="header">
|
||||||
<p>
|
<p>
|
||||||
|
18
org-roam.org
18
org-roam.org
@@ -519,11 +519,11 @@ the user. The author's recommended configuration is as follows:
|
|||||||
|
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(add-to-list 'display-buffer-alist
|
(add-to-list 'display-buffer-alist
|
||||||
'(("\\*org-roam\\*"
|
'("\\*org-roam\\*"
|
||||||
(display-buffer-in-direction)
|
(display-buffer-in-direction)
|
||||||
(direction . right)
|
(direction . right)
|
||||||
(window-width . 0.33)
|
(window-width . 0.33)
|
||||||
(window-height . fit-window-to-buffer))))
|
(window-height . fit-window-to-buffer)))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
Crucially, the window is a regular window (not a side-window), and this allows
|
Crucially, the window is a regular window (not a side-window), and this allows
|
||||||
@@ -533,6 +533,20 @@ for predictable navigation:
|
|||||||
Org-roam buffer.
|
Org-roam buffer.
|
||||||
- ~C-u RET~ navigates to thing-at-point in the other window.
|
- ~C-u RET~ navigates to thing-at-point in the other window.
|
||||||
|
|
||||||
|
For users that prefer using a side-window for the org-roam buffer, the following
|
||||||
|
example configuration should provide a good starting point:
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(add-to-list 'display-buffer-alist
|
||||||
|
'("\\*org-roam\\*"
|
||||||
|
(display-buffer-in-side-window)
|
||||||
|
(side . right)
|
||||||
|
(slot . 0)
|
||||||
|
(window-width . 0.33)
|
||||||
|
(window-parameters . ((no-other-window . t)
|
||||||
|
(no-delete-other-windows . t)))))
|
||||||
|
#+end_src
|
||||||
|
|
||||||
** TODO Styling the Org-roam buffer
|
** TODO Styling the Org-roam buffer
|
||||||
* Node Properties
|
* Node Properties
|
||||||
** Standard Org properties
|
** Standard Org properties
|
||||||
|
@@ -818,11 +818,11 @@ the user. The author's recommended configuration is as follows:
|
|||||||
|
|
||||||
@lisp
|
@lisp
|
||||||
(add-to-list 'display-buffer-alist
|
(add-to-list 'display-buffer-alist
|
||||||
'(("\\*org-roam\\*"
|
'("\\*org-roam\\*"
|
||||||
(display-buffer-in-direction)
|
(display-buffer-in-direction)
|
||||||
(direction . right)
|
(direction . right)
|
||||||
(window-width . 0.33)
|
(window-width . 0.33)
|
||||||
(window-height . fit-window-to-buffer))))
|
(window-height . fit-window-to-buffer)))
|
||||||
@end lisp
|
@end lisp
|
||||||
|
|
||||||
Crucially, the window is a regular window (not a side-window), and this allows
|
Crucially, the window is a regular window (not a side-window), and this allows
|
||||||
@@ -837,6 +837,20 @@ Org-roam buffer.
|
|||||||
@code{C-u RET} navigates to thing-at-point in the other window.
|
@code{C-u RET} navigates to thing-at-point in the other window.
|
||||||
@end itemize
|
@end itemize
|
||||||
|
|
||||||
|
For users that prefer using a side-window for the org-roam buffer, the following
|
||||||
|
example configuration should provide a good starting point:
|
||||||
|
|
||||||
|
@lisp
|
||||||
|
(add-to-list 'display-buffer-alist
|
||||||
|
'("\\*org-roam\\*"
|
||||||
|
(display-buffer-in-side-window)
|
||||||
|
(side . right)
|
||||||
|
(slot . 0)
|
||||||
|
(window-width . 0.33)
|
||||||
|
(window-parameters . ((no-other-window . t)
|
||||||
|
(no-delete-other-windows . t)))))
|
||||||
|
@end lisp
|
||||||
|
|
||||||
@node Styling the Org-roam buffer
|
@node Styling the Org-roam buffer
|
||||||
@section @strong{TODO} Styling the Org-roam buffer
|
@section @strong{TODO} Styling the Org-roam buffer
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user