- May 09, 2023
-
-
Carlo Sala authored
-
Carlo Sala authored
-
- May 06, 2023
-
-
Mark Keisler authored
-
Carlo Sala authored
To disable gnu-ls (`gls`) even if it's installed in freeBSD and macOS you can set it up with: ```zsh zstyle ':omz:lib:theme-and-appearance' gnu-ls no ``` Closes #11647
-
- May 03, 2023
-
-
kang authored
-
Carlo Sala authored
Turns out that <U+F8FF> is a reserved unicode code that is Apple logo in Apple systems. Nerd fonts was overwritting that code to other stuff in v2 and that's why I thought it needed to be replaced. Closes #11665 This reverts commit 693e3dcc.
-
- May 02, 2023
-
-
Oleg Grigoriev authored
-
Carlo Sala authored
-
- May 01, 2023
-
-
Carlo Sala authored
Fix regression introduced in #11550. If an existing alias was present in the moment of sourcing, and oh-my-zsh aliases were disabled for that file, it'd be overwritten aswell. See #11658.
-
- Apr 28, 2023
-
-
Bas Nijholt authored
Mirror of https://github.com/agkozak/zsh-z/commit/6bfe418332866d15373392164df11b4fbec2083f Closes #11652 Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
-
- Apr 27, 2023
-
-
Carlo Sala authored
-
Carlo Sala authored
Closes #11644
-
Idan Fishman authored
Closes #11649 Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
-
- Apr 21, 2023
-
-
Miguel Sempere authored
Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
-
Andrew Xie authored
Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
-
- Apr 20, 2023
-
-
Nathanial Spearing authored
-
Erin Schlarb authored
-
Erin Schlarb authored
-
- Apr 19, 2023
-
-
Roeniss Moon authored
-
- Apr 18, 2023
-
-
Mark Keisler authored
BREAKING CHANGE: This commit removes compatibility for `aws` cli v1. Now only v2 is supported.
-
- Apr 17, 2023
-
-
Carlo Sala authored
Fixes #11617
-
- Apr 16, 2023
-
-
Eddie Romanov authored
-
- Apr 11, 2023
-
-
Josh McKinney authored
-
- Apr 09, 2023
- Apr 08, 2023
-
-
Aleks authored
-
Carlo Sala authored
Closes #11606
-
- Apr 07, 2023
-
-
deimosian authored
Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
-
Alexander Huynh authored
-
- Apr 06, 2023
-
-
Marc Cornellà authored
This change fixes the case where the compressed file (e.g. tools.tgz) only contains a folder with the same name (e.g. tools) in its root folder. tools.tgz: |- tools |- fileA.txt |- fileB.txt \- fileC.txt In that case, the "smart" folder creation mechanism will extract the files in a folder "tools", and this extraction folder will contain a single folder with the same name. Before this fix, the tool would try to move out the inside folder to the parent one, but there would already be a folder named "tools", so it would generate a conflict. This change first renames the inside folder to a random string, and only then it is moved outside and the old extraction folder is deleted.
-
François M authored
-
- Apr 05, 2023
-
-
Alexander Schlarb authored
Previously this was only emitted on macOS with Apple's Terminal.app (and compatible clones like iTerm2), but it is used by other terminal emulators as well to obtain the actual current working directory wiht symlinks intact. All non-supporting terminal emulators tested gracefully ignored this value, so emit this on these as well in case they (or some other app masquarading as them) add future support for this value. Closes #9914 Co-authored-by: Marc Cornellà <hello@mcornella.com>
-
- Apr 04, 2023
-
-
Richard Mitchell authored
-
Christian Parpart authored
Signed-off-by: Christian Parpart <christian@parpart.family>
-
- Apr 03, 2023
-
-
Marc Cornellà authored
Digit modifiers were introduced in zsh 5.7.1 [1]. This commit uses readily available alternatives for backwards compatibility. [1] https://github.com/zsh-users/zsh/commit/b8dc5a7f6d Fixes #11598
-
Marc Cornellà authored
-
Marc Cornellà authored
BREAKING CHANGE: the previous zstyle setting to disable `lib/directories.zsh` aliases has been changed to the new syntax: `zstyle ':omz:lib:directories' aliases no`. See https://github.com/ohmyzsh/ohmyzsh#skip-aliases to see other ways you can use this setting. Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
-
Marc Cornellà authored
-
- Apr 02, 2023
-
-
Marc Cornellà authored
The previous code would remove the extract directory if the command failed. This could be bad because we're not checking if the extract directory already existed (since we're using `mkdir -p`), so it could be possible that the extract operation failed, and we'd be removing a directory that already existed and had files in it. This change only removes the directory if there are no files in it, regardless of whether the extract operation was successful or not. This is much safer.
-
Marc Cornellà authored
-