From 08ae868bba7fb857ed3c86135d1526ae549c76b3 Mon Sep 17 00:00:00 2001 From: Don Harper Date: Mon, 27 Nov 2023 14:49:08 -0600 Subject: [PATCH] home | bash_complition | add support for tt (timew) --- home/bash_complition.nix | 188 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 188 insertions(+) diff --git a/home/bash_complition.nix b/home/bash_complition.nix index 1252ec1..a753114 100644 --- a/home/bash_complition.nix +++ b/home/bash_complition.nix @@ -245,5 +245,193 @@ complete -o nospace -F _task t ''; }; + timecomplete = { + enable = true; + target = ".bash_completion.d/timew.sh"; + text = '' + # Bash completion for TimeWarrior + # + # Copyright (C) 2017 - 2021, Thomas Lauf + # + function __get_commands() + { + echo "annotate cancel config continue day delete diagnostics export extensions gaps get help join lengthen modify month move report resize shorten show split start stop summary tag tags track undo untag week" + } + + function __get_subcommands() + { + case "''${1}" in + modify) + echo -e "end start" + ;; + *) + echo "" + ;; + esac + } + + function __get_help_items() + { + echo -e "''$( __get_commands ) interval hints date duration dom" + } + + function __get_options() + { + echo -e "--help --verbose --version" + } + + function __get_ids() + { + local count + count="''$( timew get dom.tracked.count )" + if [[ "''${count}" -eq "0" ]] ; then + echo "" + else + seq -f "@%g" 1 "''${count}" + fi + } + + function __get_tags() + { + timew tags | tail -n +4 -- | sed -e "s|[[:space:]]*-''$||" + } + + function __get_extensions() + { + timew extensions | awk '{if(NR>6)print ''$1}' + } + + function __has_entered_id() + { + for word in "''${COMP_WORDS[@]}" ; do + if [[ "''${word}" =~ ^@[0-9] ]] ; then + return 0 + fi + done + + return 1 + } + + function __has_entered_subcommand() + { + local subcommands=''$( __get_subcommands "''${1}" ) + + for word in "''${COMP_WORDS[@]}" ; do + for cmd in ''${subcommands} ; do + if [[ "''${word}" == "''${cmd}" ]] ; then + return 0 + fi + done + done + + return 1 + } + + function __has_entered_help_item() + { + local items=''$( __get_help_items ) + + for word in "''${COMP_WORDS[@]:2}" ; do + for item in ''${items} ; do + if [[ "''${word}" == "''${item}" ]] ; then + return 0 + fi + done + done + + return 1 + } + + function __is_entering_id() + { + if [[ "''${COMP_WORDS[COMP_CWORD]}" =~ @[0-9]* ]] ; then + return 0 + else + return 1 + fi + } + + function __complete_tag() + { + COMPREPLY=() + cur="''${COMP_WORDS[COMP_CWORD]}" + local line wordlist + + declare -a wordlist + while IFS=''$'\n' read -r line ; do + wordlist+=( "''${line}" ) + done <<< "''$( __get_tags )" + + declare -a completions + while read -r line ; do + completions+=( "''${line}" ) + done < <( compgen -W "''$(printf '%q ' "''${wordlist[@]}")" -- "''${cur}" 2>/dev/null ) + + for completion in "''${completions[@]}" ; do + COMPREPLY+=( "''$(printf "%q" "''${completion}")" ) + done + } + + function _timew() + { + local cur first wordlist + + COMPREPLY=() + cur="''${COMP_WORDS[COMP_CWORD]}" + first="''${COMP_WORDS[1]}" + + case "''${first}" in + cancel|config|diagnostics|day|extensions|get|month|show|undo|week) + wordlist="" + ;; + annotate|continue|delete|join|lengthen|move|resize|shorten|split) + wordlist=''$( __get_ids ) + ;; + export|gaps|start|stop|summary|tags|track) + __complete_tag + return + ;; + modify) + if __has_entered_subcommand "''${first}" ; then + wordlist=''$( __get_ids ) + else + wordlist=''$( __get_subcommands "''${first}" ) + fi + ;; + tag|untag) + if __is_entering_id ; then + wordlist=''$( __get_ids ) + elif __has_entered_id ; then + __complete_tag + return + else + wordlist=''$( __get_ids ) + fi + ;; + report) + wordlist=''$( __get_extensions ) + ;; + help) + if __has_entered_help_item ; then + wordlist="" + else + wordlist=''$( __get_help_items ) + fi + ;; + -*) + wordlist=''$( __get_options ) + ;; + *) + wordlist=''$( __get_commands ) + ;; + esac + + COMPREPLY=(''$( compgen -W "''${wordlist}" -- "''${cur}" )) + } + + complete -F _timew timew + complete -F _timew tt + ''; + }; }; }