Skip to content

Commit

Permalink
Update Changelog, tab completions
Browse files Browse the repository at this point in the history
  • Loading branch information
MinchinWeb committed Jan 9, 2018
1 parent 46d28a7 commit 705a9b8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ This document records all notable changes to Watson. This project adheres to
options to only output the selected information (#166).
* Added: the `report` and `log` commands' output can now selectively be run
through a pager (#176).
* Added: the `report` and `log` commands now take an `--all` option to output
all recorded frames (#185).
* Updated: when renaming a project or tag, the `updated_at` timestamp is
updated on all affected frames (#181).
* Updated: some enhancements and formatting fixes have been done to the output
Expand Down
2 changes: 1 addition & 1 deletion watson.completion
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ _watson_complete () {
COMPREPLY=($(compgen -W "$tags" -- ${cur}))
;;
*)
COMPREPLY=($(compgen -W "-c -C -d -f -g -G -j -m -p -t -T -w -y --current --no-current --pager --no-pager --from --to --project --tag --day --week --month --year --json" -- ${cur})) ;;
COMPREPLY=($(compgen -W "-a -c -C -d -f -g -G -j -m -p -t -T -w -y --all --current --no-current --pager --no-pager --from --to --project --tag --day --week --month --year --json" -- ${cur})) ;;
esac
;;
merge)
Expand Down
1 change: 1 addition & 0 deletions watson.zsh-completion
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ _watson() {
'*'{-T,--tag}'[only for the given tag]: :_watson_tags' \
'(--from -f)'{-f,--from}'[start date]:date (YYYY-MM-DD):' \
'(--to -t)'{-t,--to}'[end date]:date (YYYY-MM-DD):' \
'(--all -a)'{-a,--all}'[output all frames]:' \
'--help'
;;
(merge)
Expand Down

0 comments on commit 705a9b8

Please sign in to comment.