1
0
Fork 0
mirror of synced 2024-05-28 13:01:10 -04:00
yadm/completion
Klas Mellbourn 708b491d88 fix for getting 'COMP_WORDS bad array subscript' on completing yadm
I stared getting these errors when pressing tab after 'yadm '. This seems to be due to COMP_CWORD being negative, so this is the fix I applied
2017-05-07 22:43:10 +02:00
..
README.md Add Bash completion script (#60) 2017-04-24 07:49:10 -05:00
yadm.bash_completion fix for getting 'COMP_WORDS bad array subscript' on completing yadm 2017-05-07 22:43:10 +02:00

Prerequisites

yadm completion only works if Git completions are also enabled.

Installation

Homebrew

If using homebrew to install yadm, completions should automatically be handled if you also install brew install bash-completion. This might require you to include the main completion script in your own bashrc file like this:

[ -f /usr/local/etc/bash_completion ] && source /usr/local/etc/bash_completion

Manual installation

Copy the completion script locally, and add this to you bashrc:

[ -f /full/path/to/yadm.bash_completion ] && source /full/path/to/yadm.bash_completion