Skip to content

Commit

Permalink
cancel: Split long line
Browse files Browse the repository at this point in the history
  • Loading branch information
scop committed Nov 17, 2018
1 parent 9fcc52f commit 896adae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion completions/cancel
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ _cancel()
;;
esac

COMPREPLY=( $( compgen -W "$( lpstat 2>/dev/null | cut -d' ' -f1 )" -- "$cur" ) )
COMPREPLY=( $( compgen -W \
"$( lpstat 2>/dev/null | cut -d' ' -f1 )" -- "$cur" ) )
} &&
complete -F _cancel cancel

Expand Down

0 comments on commit 896adae

Please sign in to comment.