Commit b69ad8866a177db7d2c98edc5b3f6fd8f2147758
1 parent
05018fd10e
Fix code formatting, indentation and execution order.
Showing 1 changed file with 14 additions and 15 deletions Side-by-side Diff
antigen.zsh
... | ... | @@ -515,22 +515,21 @@ antigen () { |
515 | 515 | eval "test -z \"\$$arg_name\" && export $arg_name='$arg_value'" |
516 | 516 | } |
517 | 517 | |
518 | --antigen-env-setup | |
519 | - | |
520 | 518 | # Setup antigen's autocompletion |
521 | -_antigen(){ | |
522 | - compadd \ | |
523 | - bundle\ | |
524 | - bundles\ | |
525 | - update\ | |
526 | - revert\ | |
527 | - list\ | |
528 | - cleanup\ | |
529 | - lib\ | |
530 | - theme\ | |
531 | - apply\ | |
532 | - help | |
533 | - | |
519 | +_antigen () { | |
520 | + compadd \ | |
521 | + bundle\ | |
522 | + bundles\ | |
523 | + update\ | |
524 | + revert\ | |
525 | + list\ | |
526 | + cleanup\ | |
527 | + lib\ | |
528 | + theme\ | |
529 | + apply\ | |
530 | + help | |
534 | 531 | } |
535 | 532 | |
536 | 533 | compdef _antigen antigen |
534 | + | |
535 | +-antigen-env-setup |