You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`select`| string array | Yes | List of note fields to return<sup>1</sup> |
237
-
|`hrefs`| string array | No | Find notes matching the given path, including its descendants |
238
-
|`limit`| integer | No | Limit the number of notes found |
239
-
|`match`| string array | No | Terms to search for in the notes |
240
-
|`exactMatch`| boolean | No | (deprecated: use `matchStrategy`) Search for exact occurrences of the `match` argument (case insensitive) |
241
-
|`matchStrategy`| string | No | Specify match strategy, which may be "fts" (default), "exact" or "re" |
242
-
|`excludeHrefs`| string array | No | Ignore notes matching the given path, including its descendants |
243
-
|`tags`| string array | No | Find notes tagged with the given tags |
244
-
|`mention`| string array | No | Find notes mentioning the title of the given ones |
245
-
|`mentionedBy`| string array | No | Find notes whose title is mentioned in the given ones |
246
-
|`linkTo`| string array | No | Find notes which are linking to the given ones |
247
-
|`linkedBy`| string array | No | Find notes which are linked by the given ones |
248
-
|`orphan`| boolean | No | Find notes which are not linked by any other note |
249
-
|`tagless`| boolean | No | Find notes which have no tags |
250
-
|`related`| string array | No | Find notes which might be related to the given ones |
251
-
|`maxDistance`| integer | No | Maximum distance between two linked notes |
252
-
|`recursive`| boolean | No | Follow links recursively |
253
-
|`created`| string | No | Find notes created on the given date |
254
-
|`createdBefore`| string | No | Find notes created before the given date |
255
-
|`createdAfter`| string | No | Find notes created after the given date |
256
-
|`modified`| string | No | Find notes modified on the given date |
257
-
|`modifiedBefore`| string | No | Find notes modified before the given date |
258
-
|`modifiedAfter`| string | No | Find notes modified after the given date |
259
-
|`sort`| string array | No | Order the notes by the given criterion |
260
-
261
-
1. As the output of this command might be very verbose and put a heavy load on the LSP client, you need to explicitly set which note fields you want to receive with the `select` option. The following fields are available: `filename`, `filenameStem`, `path`, `absPath`, `title`, `lead`, `body`, `snippets`, `rawContent`, `wordCount`, `tags`, `metadata`, `created`, `modified` and `checksum`.
0 commit comments