tmux-plugins / tpm

Tmux Plugin Manager
MIT License
11.68k stars 415 forks source link

Fix the instructions on changing plugins install dir #278

Open Akhil-CM opened 4 months ago

Akhil-CM commented 4 months ago

The instructions given here need to be modified after tmux 3.4. The issue mentioned here.

TLDR : path values for options should be given in double quotes instead of single quotes.

RossBarnie commented 1 month ago

The reason you need double-quotes is because you had a variable in your path, $HOME which needed to be interpolated. String interpolation only happens with double-quotes, not single-quotes. Single-quotes is fine if you don't use variables. This could be called out by the docs, but they're not wrong as they are.