2014-07-02 19:02:56 +00:00
|
|
|
# freezing-octo-hipster
|
|
|
|
|
|
|
|
Random utilities of vbatts' being cleaned up, and published
|
|
|
|
|
|
|
|
# Commands
|
|
|
|
|
|
|
|
## next-note
|
|
|
|
|
|
|
|
Simple date formating for notes
|
|
|
|
|
|
|
|
### Install
|
|
|
|
|
|
|
|
go get github.com/vbatts/freezing-octo-hipster/cmd/next-note
|
|
|
|
|
2014-07-02 19:16:16 +00:00
|
|
|
### Usage
|
|
|
|
|
|
|
|
next-note -h
|
|
|
|
Usage of next-note:
|
|
|
|
-c=false: print current week's filename
|
|
|
|
-d=false: print current date
|
|
|
|
-dir="": Base directory for tasks
|
|
|
|
-p=false: print previous week's filename
|
|
|
|
|
|
|
|
### vim
|
|
|
|
|
|
|
|
Copy ./cmd/next-note/next-note.vim to ~/.vim/plugin/
|
|
|
|
|
|
|
|
This provides commands, like:
|
|
|
|
|
|
|
|
* `:Nd` - append the date to the current buffer
|
|
|
|
* `:Nc` - to open a tabe for current week's notes file
|
|
|
|
* `:Np` - to open a tabe for previous week's notes file
|
|
|
|
* `:Nn` - to open a tabe for next week's notes file
|
|
|
|
|
2014-07-02 19:02:56 +00:00
|
|
|
## find-todos
|
|
|
|
|
|
|
|
Look through your notes directory for TODO items.
|
|
|
|
|
|
|
|
### Install
|
|
|
|
|
|
|
|
go get github.com/vbatts/freezing-octo-hipster/cmd/find-todos
|
|
|
|
|