about summary refs log tree commit diff
path: root/pkgs/development/compilers/dotnet/completions/dotnet.bash
blob: 56c599e4358d501c0c87b7d5dd954a1396681671 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# bash parameter completion for the dotnet CLI

function _dotnet_bash_complete()
{
  local cur="${COMP_WORDS[COMP_CWORD]}" IFS=$'\n' # On Windows you may need to use use IFS=$'\r\n'
  local candidates

  read -d '' -ra candidates < <(dotnet complete --position "${COMP_POINT}" "${COMP_LINE}" 2>/dev/null)

  read -d '' -ra COMPREPLY < <(compgen -W "${candidates[*]:-}" -- "$cur")
}

complete -f -F _dotnet_bash_complete dotnet