44 lines
2.1 KiB
Fish
44 lines
2.1 KiB
Fish
function __fish-timesheets-available-projects
|
|
grep 'account Project:.*' "$TIMESHEET_LEDGER_HOME/config/accounts.dat" | cut -f2 -d ' '
|
|
end
|
|
|
|
function __fish-timesheets-running-projects
|
|
cat "$TIMESHEET_LEDGER_HOME/timesheets/$(date +%Y).journal" | grep -v ';' | awk '{ last[$4] = $1 } END { for (i in last) { if (last[i] == "i") { print i } } }'
|
|
end
|
|
|
|
function __fish-timesheets-existing-comments
|
|
ledger -f "$TIMESHEET_LEDGER_HOME/main.journal" payees ^Project
|
|
end
|
|
|
|
function __fish_timesheets_arg_number -a number
|
|
set -l cmd (commandline -opc)
|
|
test (count $cmd) -eq $number
|
|
end
|
|
|
|
complete -c t -x -l help -s h -d "print usage help"
|
|
complete -c t -x -l verbose -s v -d "verbose output"
|
|
complete -c t -x -n "__fish_use_subcommand" -a in -d "start tracking time for a project"
|
|
complete -c t -x -n "__fish_use_subcommand" -a out -d "stop tracking time for a project"
|
|
complete -c t -x -n "__fish_use_subcommand" -a toggle -d "toggle tracking time"
|
|
complete -c t -x -n "__fish_use_subcommand" -a bal -d "print current balance"
|
|
complete -c t -x -n "__fish_use_subcommand" -a invoice -d "generate an invoice"
|
|
complete -c t -x -n "__fish_use_subcommand" -a invoice_list -d "generate invoice data"
|
|
complete -c t -x -n "__fish_use_subcommand" -a waybar -d "generate data for waybar"
|
|
|
|
# In
|
|
complete -c t -x -n "__fish_seen_subcommand_from in" -n "__fish_timesheets_arg_number 2" -a '(__fish-timesheets-available-projects)'
|
|
complete -c t -x -n "__fish_seen_subcommand_from in" -n "__fish_timesheets_arg_number 3" -a '(__fish-timesheets-existing-comments)'
|
|
|
|
# Out
|
|
complete -c t -x -n "__fish_seen_subcommand_from out" -a '(__fish-timesheets-running-projects)'
|
|
|
|
# Bal
|
|
complete -c t -x -n "__fish_seen_subcommand_from bal" -a '(__fish-timesheets-available-projects)'
|
|
|
|
# Invoice
|
|
complete -c t -x -n "__fish_seen_subcommand_from invoice" -n "__fish_timesheets_arg_number 2" -a '(__fish-timesheets-available-projects)'
|
|
complete -c t -x -n "__fish_seen_subcommand_from invoice" -n "__fish_timesheets_arg_number 3" -a '(__fish-timesheets-existing-comments)'
|
|
|
|
# Invoice list
|
|
complete -c t -x -n "__fish_seen_subcommand_from invoice_list" -a '(__fish-timesheets-available-projects)'
|