Compare commits

...

3 Commits

Author SHA1 Message Date
Daniel Carrillo a96f1618b4 Merge upstream/master 2021-12-04 12:13:47 +01:00
David Crook ecaed1cfa7 change polarity of test for BROWSER 2021-11-16 09:55:19 -08:00
Andrew Kvalheim 7f8b9b829a general: Correct typo in installation instructions
Resolves “zsh: bad substitution”
2021-11-12 08:31:37 -08:00
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ version is **4.3.11**.
git clone --recursive https://github.com/sorin-ionescu/prezto.git "${ZDOTDIR:-${XDG_CONFIG_HOME:-$HOME/.config}/zsh}/.zprezto"
```
- Configure `$XDG_CONFIG_HOME` and `$ZDOTDIR` in _`${$HOME}/.zshenv`_:
- Configure `$XDG_CONFIG_HOME` and `$ZDOTDIR` in _`$HOME/.zshenv`_:
```sh
export XDG_CONFIG_HOME="${XDG_CONFIG_HOME:=$HOME/.config}"

View File

@ -47,7 +47,7 @@ file="$3"
if [[ -n "$url" ]]; then
url="$url/tree/$reference/$file"
if [[ -z "$BROWSER" ]]; then
if [[ -n "$BROWSER" ]]; then
"$BROWSER" "$url"
return 0
else