(fix): set default org-roam-list-files-commands for windows to nil (#698)

This commit is contained in:
Jethro Kuan
2020-05-25 13:26:46 +08:00
committed by GitHub
parent a05b1ebcc3
commit ea6bd215fc

View File

@@ -126,7 +126,10 @@ Formatter may be a function that takes title as its only argument."
(function :tag "Custom function"))
: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.
It should be a list of symbols or cons cells representing any of the following