mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 21:32:40 +00:00
Don't use a mix of tabs and spaces (#17045)
Some checks are pending
CI / Check formatting and spelling (push) Waiting to run
CI / (macOS) Run Clippy and tests (push) Waiting to run
CI / (Linux) Run Clippy and tests (push) Waiting to run
CI / (Windows) Run Clippy and tests (push) Waiting to run
CI / Create a macOS bundle (push) Blocked by required conditions
CI / Create a Linux bundle (push) Blocked by required conditions
CI / Create arm64 Linux bundle (push) Blocked by required conditions
Deploy Docs / Deploy Docs (push) Waiting to run
Docs / Check formatting (push) Waiting to run
Some checks are pending
CI / Check formatting and spelling (push) Waiting to run
CI / (macOS) Run Clippy and tests (push) Waiting to run
CI / (Linux) Run Clippy and tests (push) Waiting to run
CI / (Windows) Run Clippy and tests (push) Waiting to run
CI / Create a macOS bundle (push) Blocked by required conditions
CI / Create a Linux bundle (push) Blocked by required conditions
CI / Create arm64 Linux bundle (push) Blocked by required conditions
Deploy Docs / Deploy Docs (push) Waiting to run
Docs / Check formatting (push) Waiting to run
This PR fixes some spots in the docs and the `install.sh` script that were using a mix of tabs and spaces. We should just be using spaces. Release Notes: - N/A
This commit is contained in:
parent
f3d94b1032
commit
a79d4432a7
2 changed files with 12 additions and 12 deletions
|
@ -29,13 +29,13 @@ Then add the following to your Zed `settings.json`:
|
||||||
|
|
||||||
```json
|
```json
|
||||||
"languages": {
|
"languages": {
|
||||||
"Luau": {
|
"Luau": {
|
||||||
"formatter": {
|
"formatter": {
|
||||||
"external": {
|
"external": {
|
||||||
"command": "stylua",
|
"command": "stylua",
|
||||||
"arguments": ["-"]
|
"arguments": ["-"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
|
@ -39,11 +39,11 @@ main() {
|
||||||
}
|
}
|
||||||
elif which wget >/dev/null 2>&1; then
|
elif which wget >/dev/null 2>&1; then
|
||||||
curl () {
|
curl () {
|
||||||
wget -O- "$@"
|
wget -O- "$@"
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
echo "Could not find 'curl' or 'wget' in your path"
|
echo "Could not find 'curl' or 'wget' in your path"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
"$platform" "$@"
|
"$platform" "$@"
|
||||||
|
|
Loading…
Reference in a new issue