mirror of
https://github.com/org-roam/org-roam
synced 2025-09-14 15:46:48 -05:00
(fix): set default org-roam-list-files-commands for windows to nil (#698)
This commit is contained in:
@@ -126,7 +126,10 @@ Formatter may be a function that takes title as its only argument."
|
|||||||
(function :tag "Custom function"))
|
(function :tag "Custom function"))
|
||||||
:group 'org-roam)
|
:group 'org-roam)
|
||||||
|
|
||||||
(defcustom org-roam-list-files-commands '(find rg)
|
(defcustom org-roam-list-files-commands
|
||||||
|
(if (member system-type '(windows-nt ms-dos cygwin))
|
||||||
|
nil
|
||||||
|
'(find rg))
|
||||||
"Commands that will be used to find Org-roam files.
|
"Commands that will be used to find Org-roam files.
|
||||||
|
|
||||||
It should be a list of symbols or cons cells representing any of the following
|
It should be a list of symbols or cons cells representing any of the following
|
||||||
|
Reference in New Issue
Block a user