slate: A note taking CLI tool.

[ library, mit, program, unclassified ] [ Propose Tags ]

Please see the README on Github at https://github.com/evuez/slate#readme


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.2.0.0, 0.3.0.0, 0.4.0.0, 0.5.0.0, 0.6.0.0, 0.7.0.0, 0.8.0.0, 0.8.1.0, 0.9.0.0, 0.10.0.0, 0.11.0.0, 0.12.0.0, 0.13.0.0, 0.13.1.0
Change log ChangeLog.md
Dependencies base (>=4.7 && <5), directory (>=1.3), filepath (>=1.4), optparse-applicative (>=0.14), slate [details]
License MIT
Copyright Copyright (c) 2017, evuez
Author evuez
Maintainer helloevuez@gmail.com
Home page https://github.com/evuez/slate#readme
Bug tracker https://github.com/evuez/slate/issues
Source repo head: git clone https://github.com/evuez/slate
Uploaded by evuez at 2017-12-23T09:37:30Z
Distributions
Executables slate
Downloads 6573 total (33 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2017-12-23 [all 1 reports]

Readme for slate-0.2.0.0

[back to package description]

slate - a note taking tool.

A simple tool to take notes from your terminal.

Generates markdown task lists.

Lists are stored in ~/.config/slate/ and their default name is the name of your current directory. You can use any other name you want using the --name option.

Install

$ stack install

Usage

$ slate --help

slate - a note taking tool.

Usage: slate COMMAND
  Slate

Available options:
  -h,--help                Show this help text

Available commands:
  add                      Add a note.
  done                     Mark a note as done.
  todo                     Mark a note as to-do.
  remove                   Remove a note.
  display                  Display a slate.
  rename                   Rename a slate.
  wipe                     Wipe a slate.

$ slate add "My first note."
$ slate add "New note!"
$ slate display
00 - My first note.
01 - New note!

$ slate done 0
$ slate display
00 - My first note.
01 - New note!

$ slate display --only=todo
01 - New note!

$ slate add "Fake note"
$ slate display
00 - My first note.
01 - New note!
02 - Fake note

$ slate remove 2
$ slate display
00 - My first note.
01 - New note!

$ slate wipe --only=todo
$ slate display
00 - My first note.

$ slate todo 0
$ slate display
00 - My first note.