FISH: jc: Too many args for cd command
Created by: duganchen
In FISH, if I try to "jc" to a directory that can't be matched (say, if I just mash the keyboard to create a random string), then I get:
Too many args for cd command
I can see that internally, the "jc" command calls:
j (pwd) $argv
Which would then get translated to:
cd <current directory> <argument>
That doesn't work, because FISH's "cd" command only accepts one argument.