_psub 362 B

1234567891011121314151617181920
  1. #compdef psub
  2. #autoload
  3. #
  4. # Completes psub.
  5. #
  6. # Authors:
  7. # Sorin Ionescu <sorin.ionescu@gmail.com>
  8. #
  9. _arguments \
  10. '-g[match globally]' \
  11. '-i[ignore case]' \
  12. '-m[^ and $ match the start and the end of a line]' \
  13. '-s[. matches newline]' \
  14. '-x[ignore whitespace and comments]' \
  15. '1::pattern:' \
  16. '2::replacement:' \
  17. '3::files:_files' && return 0