aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDefaultGen <notes.propeller971@slmail.me>2024-06-05 04:40:28 -0400
committerDefaultGen <notes.propeller971@slmail.me>2024-06-05 04:40:28 -0400
commit5939127700344d86a560a3765b2138f23ab2862e (patch)
tree8117be9a60ce674a3fbec546a47e32b148b77fc2
parentc24731f92478e7c1546a77c70d0309db3d63be13 (diff)
downloadsimple-denote.nvim-5939127700344d86a560a3765b2138f23ab2862e.tar.gz
Added signature support
-rw-r--r--README.md12
1 files changed, 9 insertions, 3 deletions
diff --git a/README.md b/README.md
index c93aa29..5c32444 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@ For example:
2. `20240601T180054--i-have-no-tags.md`
3. `20240601T193022__im_only_tags.md`
4. `20240601T200121.md`
-5. `20240601T213392=1a1--i-have-a-signature__denote_coolstuff.md` (Not yet implemented)
+5. `20240601T213392==1a1--i-have-a-signature__denote_coolstuff.md`
There is no support for frontmatter, links, or any other denote features. I just like the file-naming scheme. It's easy to parse, search, and sort chronologically. You can read more about it here:
https://protesilaos.com/emacs/denote#h:4e9c7512-84dc-4dfb-9fa9-e15d51178e5d
@@ -43,12 +43,18 @@ The heading options automatically support Markdown (#) and Org/Norg (*) headings
```vim
" Renames the current note with the new title
" If `retitle_heading` is true, overwrites the first line heading as well
-:Denote retitle
+:Denote title
```
```vim
" Renames the current note with the new list of tags (space delimited)
-:Denote retag
+:Denote tag
+```
+
+```vim
+" Rename the current note with a signature
+" This has a user-defined meaning and no particular purpose
+:Denote signature
```
# Credits