0

My tab key's autocomplete function is not working. Instead, it spits out this error message: Cannot parse arguments: unknown option -r

VaTo
  • 3,071
  • 3
  • 18
  • 47

1 Answers1

0

If you run set -x, the shell will print everything it is running, so you can figure out what command is malformed. Then if you run complete with no arguments, you can also see what completion commands have been configured. One of them obviously has a syntax error.

user3188445
  • 5,107
  • 3
  • 21
  • 38