0

Basically, I want to make it so that if I run a command, say

cd ~/Library/Application Support/

it will replace that path with "~/Library/Application Support/"
Is this at all possible? I would also like it to apply to paths in my .zshrc.

Thanks

Jim Garrison
  • 85,615
  • 20
  • 155
  • 190
willyb321
  • 310
  • 3
  • 9
  • Escape space with backslash? `cd ~/Library/Application\ Support/` – the.Legend Sep 03 '16 at 05:08
  • If you use **Tab**-Completion `zsh` will automatically quote whitespacese. Of course you have to press **Tab** before the first whitespace, otherwise `zsh` has no way of knowing that the previous and current *word* should be taken as one. Bonus: `~/Lib` **Tab** `App` **Tab** can be typed faster than `~/Library/Application Support/`. – Adaephon Sep 05 '16 at 14:38

1 Answers1

0

I was able to work around my specific issue by creating a symbolic link.
I was unable to use tab-completion/change the path manually as the issue was from here. Specifically the shell-integration.
Edit: Turns out that this issue was due to a bug in the program.

willyb321
  • 310
  • 3
  • 9