Browse Source

bash-completion: include underscores

`fundchannel_start` etc are not included in the bash-completion as
they include underscores in their names. this fixes this by including
underscores.
pull/2938/head
lisa neigut 6 years ago
committed by Christian Decker
parent
commit
a6516f477b
  1. 2
      contrib/lightning-cli.bash-completion

2
contrib/lightning-cli.bash-completion

@ -31,7 +31,7 @@ _lightning_cli() {
# get the regular commands # get the regular commands
if [[ -z "$cur" || "$cur" =~ ^[a-z] ]]; then if [[ -z "$cur" || "$cur" =~ ^[a-z] ]]; then
helpopts=$($lightning_cli -H help 2>/dev/null | sed -n 's/^\([a-z][a-z-]*\).*/\1/p' | sed '$ d') helpopts=$($lightning_cli -H help 2>/dev/null | sed -n 's/^\([a-z][a-z_-]*\).*/\1/p' | sed '$ d')
fi fi
COMPREPLY=( $( compgen -W "$helpopts $globalcmds" -X "*," -- "$cur" ) ) COMPREPLY=( $( compgen -W "$helpopts $globalcmds" -X "*," -- "$cur" ) )

Loading…
Cancel
Save