timewarrior
timewarrior copied to clipboard
Define aliases for timewarrior commands
Add the ability to define aliases for existing timewarrior commands in the configuration
It would be nice to not only introduce existing commands but simplify calls. I find it sometimes annoying to type
$ timew summary :month :ids
It'd be cool to allow introducing aliases which contain the hints, too, like:
$ timew mids
Did you consider a configuration to insert :ids
by default?
I solved this problem by just creating aliases in my shell. Here's the ones I added to my .bashrc file:
alias t='timew'
alias ts='timew summary :id'
alias td='timew day :id'
alias tw='timew week :id'
alias tm='timew month :id'
Works like a charm!