From 705a9b8c02ab545469b6c314d0a8783a8a52eb07 Mon Sep 17 00:00:00 2001 From: MinchinWeb Date: Tue, 9 Jan 2018 11:00:58 -0700 Subject: [PATCH] Update Changelog, tab completions --- CHANGELOG.md | 2 ++ watson.completion | 2 +- watson.zsh-completion | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 735e8054..3d03b8a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/watson.completion b/watson.completion index 46ffdb99..f805c05a 100644 --- a/watson.completion +++ b/watson.completion @@ -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) diff --git a/watson.zsh-completion b/watson.zsh-completion index fe9a46bc..b61308e4 100644 --- a/watson.zsh-completion +++ b/watson.zsh-completion @@ -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)