aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHumanEntity <human_entity@icloud.com>2023-12-25 14:26:29 +0100
committerHumanEntity <human_entity@icloud.com>2023-12-25 14:26:29 +0100
commit22818fd95f438f83d32f6e1d482c6c2ef58772a0 (patch)
tree6b1882c2719b68a4104673b5f2fe688293a523fc
parentf85e0ed99bdc22c0050cef9b80844c983588ae62 (diff)
downloadsimple-denote.nvim-22818fd95f438f83d32f6e1d482c6c2ef58772a0.tar.gz
Updated README
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 90bd724..b0db470 100644
--- a/README.md
+++ b/README.md
@@ -25,7 +25,7 @@ To create use `note` sub command. It will will prompt for note name and tags. Ta
### Searching for notes
-To search for note use `search` sub command. It will prompt for date in YEAR MONTH DAY format and name.
+To search for note use `search` sub command. It will prompt for date in YEAR MONTH DAY format, name and tags.
## `api` way
@@ -53,8 +53,8 @@ api.note(name, tags)
### Searching for notes
-To search for note use `search` function. `date` is table with year, month and day field.
+To search for note use `search` function.`date` is table with year, month and day field, `name` just a string and `tags` list of tags.
```lua
-api.search(date,name)
+api.search(date,name,tags)
```