From 004a744965f4b8cf0f73780ce64c4976c995d89d Mon Sep 17 00:00:00 2001 From: k Date: Thu, 15 Feb 2024 22:58:31 +0100 Subject: [PATCH] fix: remove zsh built-in from alias column (#49) Remove zsh built-in `cd` from Alias column and move it to Command column instead, following existing pattern for descriptions used in table. --- Cheatsheet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cheatsheet.md b/Cheatsheet.md index 875cc63..06e7d7a 100644 --- a/Cheatsheet.md +++ b/Cheatsheet.md @@ -27,7 +27,7 @@ Quick reference: | :--------- | :----------------------------------------- | | `md` | `mkdir -p` | | `rd` | `rmdir` | -| `cd` / `~` | `cd` to your home directory | +| `~` | `cd` (change to home directory) | | `..` | `cd ..` | | `...` | `cd ../..` | | `....` | `cd ../../..` |