Note manager
Go to file
Volodymyr Patuta 5893174d59 check 2020-11-29 18:02:10 +01:00
src add show_all 2020-11-29 18:01:25 +01:00
.gitignore cargo init 2020-11-26 13:49:42 +01:00
Cargo.toml termimad 2020-11-29 18:00:56 +01:00
LICENSE Add LICENSE 2020-11-24 19:14:28 +01:00
README.md check 2020-11-29 18:02:10 +01:00

README.md

rnote

license

A minimal note taking cli tool.

Description

rnote creates Markdown text files in a date-named or category directories with a name of a header of the note.

Example:

.rnote/
├── 2020-03-20
│   └── Lockdown.md
├── 2020-10-20
│   └── New Lockdown.md
└── shop
    └── to buy.md

TODO

  • Create a note
  • Delete a note
  • Modify a note
  • Show all notes in a scrollable TextView in a raw terminal with termimad
  • Show all notes from DATE or Category
  • Search a note by header
  • Search a note by word (kinda grep)