Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

31 строка
2.6 KiB

  1. # Fish shell completions for mw (mutt-wizard) command
  2. # Main flags (first argument)
  3. complete -c mw -n "not __fish_seen_subcommand_from -a -l -d -D -y -Y -t -T -r" -s a -d "Add an email address"
  4. complete -c mw -n "not __fish_seen_subcommand_from -a -l -d -D -y -Y -t -T -r" -s l -d "List email addresses configured"
  5. complete -c mw -n "not __fish_seen_subcommand_from -a -l -d -D -y -Y -t -T -r" -s d -d "Remove an already added address"
  6. complete -c mw -n "not __fish_seen_subcommand_from -a -l -d -D -y -Y -t -T -r" -s D -d "Force remove account without confirmation"
  7. complete -c mw -n "not __fish_seen_subcommand_from -a -l -d -D -y -Y -t -T -r" -s y -d "Sync mail for account by name"
  8. complete -c mw -n "not __fish_seen_subcommand_from -a -l -d -D -y -Y -t -T -r" -s Y -d "Sync mail for all accounts"
  9. complete -c mw -n "not __fish_seen_subcommand_from -a -l -d -D -y -Y -t -T -r" -s t -d "Toggle automatic mailsync every <number> minutes"
  10. complete -c mw -n "not __fish_seen_subcommand_from -a -l -d -D -y -Y -t -T -r" -s T -d "Toggle automatic mailsync every 10 minutes"
  11. complete -c mw -n "not __fish_seen_subcommand_from -a -l -d -D -y -Y -t -T -r" -s r -d "Order account numbers"
  12. # Sub-options for -a (add email address)
  13. complete -c mw -n "__fish_seen_subcommand_from -a" -s u -d "Account login name if not full address"
  14. complete -c mw -n "__fish_seen_subcommand_from -a" -s n -d "Real name to be on the email account"
  15. complete -c mw -n "__fish_seen_subcommand_from -a" -s i -d "IMAP/POP server address"
  16. complete -c mw -n "__fish_seen_subcommand_from -a" -s I -d "IMAP/POP server port"
  17. complete -c mw -n "__fish_seen_subcommand_from -a" -s s -d "SMTP server address"
  18. complete -c mw -n "__fish_seen_subcommand_from -a" -s S -d "SMTP server port"
  19. complete -c mw -n "__fish_seen_subcommand_from -a" -s x -d "Password for account (recommended to be in double quotes)"
  20. complete -c mw -n "__fish_seen_subcommand_from -a" -s P -d "Pass Prefix (prefix of the file where password is stored)"
  21. complete -c mw -n "__fish_seen_subcommand_from -a" -s p -d "Add for a POP server instead of IMAP"
  22. complete -c mw -n "__fish_seen_subcommand_from -a" -s X -d "Delete an account's local email too when deleting"
  23. complete -c mw -n "__fish_seen_subcommand_from -a" -s o -d "Configure address, but keep mail online"
  24. complete -c mw -n "__fish_seen_subcommand_from -a" -s f -d "Assume typical English mailboxes without attempting log-on"
  25. # Email address completions for -D and -y flags
  26. complete -c mw -n "__fish_seen_subcommand_from -D" -f -a "(mw -l 2>/dev/null | cut -f2)"
  27. complete -c mw -n "__fish_seen_subcommand_from -y" -f -a "(mw -l 2>/dev/null | cut -f2)"