mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-15 01:48:34 -07:00
fixed typo
This commit is contained in:
parent
9f922c43c7
commit
75c6c3b0e9
@ -10,20 +10,20 @@ plugins=(... crystal)
|
|||||||
|
|
||||||
## Aliases
|
## Aliases
|
||||||
|
|
||||||
| Alias | Command | Description |
|
| Alias | Command | Description |
|
||||||
|:------|:--------------------------|:---------------------------------------------------------------|
|
|:------|:------------------------------|:---------------------------------------------------------------|
|
||||||
| cry | `crystal` | language executable. |
|
| cry | `crystal` | language executable. |
|
||||||
| cryb | `crystal build` | build an executable. |
|
| cryb | `crystal build` | build an executable. |
|
||||||
| crybr | `crystal build --release` | build an executable (Compile in release mode). |
|
| crybr | `crystal build --release` | build an executable (Compile in release mode). |
|
||||||
| cryr | `crystal run` | build and run program. |
|
| cryr | `crystal run` | build and run program. |
|
||||||
| cryrr | `crystal run --release` | build and run program (Compile in release mode). |
|
| cryrr | `crystal run --release` | build and run program (Compile in release mode). |
|
||||||
| crys | `crystal spec` | build and run specs. |
|
| crys | `crystal spec --order random` | build and run specs (in random order). |
|
||||||
| crysr | `crystal spec --release` | build and run specs (Compile in release mode). |
|
| crysu | `crystal spec` | build and run specs. |
|
||||||
| sha | `shards` | shard executable. |
|
| sha | `shards` | shard executable. |
|
||||||
| shac | `shards check` | Verify all dependencies are installed. |
|
| shac | `shards check` | Verify all dependencies are installed. |
|
||||||
| shai | `shards install` | Install dependencies, creating or using the `shard.lock` file. |
|
| shai | `shards install` | Install dependencies, creating or using the `shard.lock` file. |
|
||||||
| shal | `shards list` | List installed dependencies. |
|
| shal | `shards list` | List installed dependencies. |
|
||||||
| shao | `shards outdated` | List dependencies that are outdated. |
|
| shao | `shards outdated` | List dependencies that are outdated. |
|
||||||
| shap | `shards prune` | Remove unused dependencies from `lib` folder. |
|
| shap | `shards prune` | Remove unused dependencies from `lib` folder. |
|
||||||
| shau | `shards update` | Update dependencies and `shard.lock`. |
|
| shau | `shards update` | Update dependencies and `shard.lock`. |
|
||||||
| shav | `shards version` | Print the current version of the shard. |
|
| shav | `shards version` | Print the current version of the shard. |
|
||||||
|
@ -12,7 +12,7 @@ alias cryr="crystal run"
|
|||||||
alias cryrr="crystal run --release"
|
alias cryrr="crystal run --release"
|
||||||
|
|
||||||
# Spec
|
# Spec
|
||||||
alias crys="crystal spec --order rando"
|
alias crys="crystal spec --order random"
|
||||||
alias crysu="crystal spec"
|
alias crysu="crystal spec"
|
||||||
|
|
||||||
# Shards
|
# Shards
|
||||||
|
Loading…
Reference in New Issue
Block a user