(minor): fix lints on main (#2320)

This commit is contained in:
Jethro Kuan
2023-02-23 14:42:35 +08:00
committed by GitHub
parent 74422df546
commit 7d2f511251

View File

@ -152,31 +152,40 @@ responsibility to ensure that."
'(find fd fdfind rg)) '(find fd fdfind 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
supported file search methods. the following supported file search methods.
The commands will be tried in order until an executable for a command is found. The commands will be tried in order until an executable for a
The Elisp implementation is used if no command in the list is found. command is found. The Elisp implementation is used if no command
in the list is found.
`find' `find'
Use find as the file search method. Use find as the file search method.
Example command: Example command:
find /path/to/dir -type f \( -name \"*.org\" -o -name \"*.org.gpg\" -name \"*.org.age\" \) find /path/to/dir -type f \
\( -name \"*.org\" -o -name \"*.org.gpg\" -name \"*.org.age\" \)
`fd' `fd'
Use fd as the file search method. Use fd as the file search method.
Example command: fd /path/to/dir/ --type file -e \".org\" -e \".org.gpg\" -e \".org.age\" Example command:
fd /path/to/dir/ --type file -e \".org\" -e \".org.gpg\" -e \".org.age\"
`fdfind' `fdfind'
Same as `fd'. It's an alias that used in some OSes (e.g. Debian, Ubuntu) Same as `fd'. It's an alias that used in some OSes (e.g. Debian, Ubuntu)
`rg' `rg'
Use ripgrep as the file search method.
Example command: rg /path/to/dir/ --files -g \"*.org\" -g \"*.org.gpg\" -g \"*.org.age\"
By default, `executable-find' will be used to look up the path to the Use ripgrep as the file search method.
executable. If a custom path is required, it can be specified together with the Example command:
method symbol as a cons cell. For example: '(find (rg . \"/path/to/rg\"))." rg /path/to/dir/ --files -g \"*.org\" -g \"*.org.gpg\" -g \"*.org.age\"
By default, `executable-find' will be used to look up the path to
the executable. If a custom path is required, it can be specified
together with the method symbol as a cons cell. For example:
'(find (rg . \"/path/to/rg\"))."
:type '(set (const :tag "find" find) :type '(set (const :tag "find" find)
(const :tag "fd" fd) (const :tag "fd" fd)
(const :tag "fdfind" fdfind) (const :tag "fdfind" fdfind)