summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-05-15docs(pyenv): warn about pyenv init (#11692)Joe
2023-05-12fix(aws): use the correct variable to assert region is defined (#11691)ZYX
2023-05-09fix(robbyrussell) multiline command editing (#11681)roodkcab
Co-authored-by: chenshuoshi <chenshuoshi@inagora.cn> Closes #11680
2023-05-09docs(theme-and-appearance): reflect properly dcff7a7 changesCarlo Sala
2023-05-09fix(theme-and-appearance): make bsd `ls` to be defaultCarlo Sala
2023-05-06fix(aws): correct access key disable command (#11671)Mark Keisler
2023-05-06feat(theme-and-appearance): allow disabling gnu-ls in bsdCarlo Sala
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
2023-05-03feat(deno): add `dru` alias for `--unstable` (#11667)kang
2023-05-03fix(apple): go back to previous iconCarlo Sala
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 693e3dcc447b5d6fa611eea43166ea2b4e0ed877.
2023-05-02feat(rake-fast): show task descriptions in autocomplete (#11653)Oleg Grigoriev
2023-05-02fix(apple): replace deprecated nerdfonts iconCarlo Sala
2023-05-01fix(init): avoid overwriting existing aliasesCarlo Sala
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.
2023-04-28feat(z): update to latest upstream versionBas Nijholt
Mirror of https://github.com/agkozak/zsh-z/commit/6bfe418332866d15373392164df11b4fbec2083f Closes #11652 Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
2023-04-27chore(azure): fix typoCarlo Sala
2023-04-27fix(azure): recognize properly linuxbrewCarlo Sala
Closes #11644
2023-04-27fix(aws): set properly set divider to spaceIdan Fishman
Closes #11649 Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
2023-04-21feat(dbt): create plugin (#11635)Miguel Sempere
Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
2023-04-21feat(starship): create plugin (#10947)Andrew Xie
Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
2023-04-20feat(npm): add `npmrd` alias (#11627)Nathanial Spearing
2023-04-20fix(cli): execute as expected if `ksh_arrays` is set (#11629)Erin Schlarb
2023-04-20fix(dirhistory): run properly if `ksh_arrays` is set (#11630)Erin Schlarb
2023-04-19feat(aws): allow more customisation in prompt function (#11619)Roeniss Moon
2023-04-18feat(aws)!: improve `aws_change_access_key` (#11378)Mark Keisler
BREAKING CHANGE: This commit removes compatibility for `aws` cli v1. Now only v2 is supported.
2023-04-17fix(check_for_upgrade): update properly `LAST_EPOCH`Carlo Sala
Fixes #11617
2023-04-16feat(pipenv): add pupd alias (#11616)Eddie Romanov
2023-04-11docs(ssh-agent): macOS and p10k advices (#11612)Josh McKinney
2023-04-09feat(archlinux): improve update function messages (#11608)deimosian
2023-04-09fix(archlinux): keyring update function (#11607)deimosian
2023-04-08feat(git): add merge squash alias (`gms`) (#10937)Aleks
2023-04-08fix(azure): look properly for azure config fileCarlo Sala
Closes #11606
2023-04-07feat(archlinux): unify `upgrade` function (#11597)deimosian
Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
2023-04-07fix(jump): even spacing between marks (#11601)Alexander Huynh
2023-04-06fix(extract): fix conflict if compressed file has a folder of the same nameMarc Cornellà
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.
2023-04-06feat(toolbox)!: rename and add aliases (#11580)François M
2023-04-05feat(lib): send OSC 7 on directory change for more supported terminals (#9914)Alexander Schlarb
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>
2023-04-04feat(term_tab): add support for macOS (#11391)Richard Mitchell
2023-04-04feat(termsupport): add contour terminal (#11599)Christian Parpart
Signed-off-by: Christian Parpart <christian@parpart.family>
2023-04-03fix(init): don't use digits in parameter modifiers for compatibility (#11598)Marc Cornellà
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
2023-04-03fix(changelog): ignore lines containing whitespace in breaking change commitsMarc Cornellà
2023-04-03feat(init)!: allow turning off aliases for libs and plugins (#11550)Marc Cornellà
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>
2023-04-03chore(installer): remove words triggering false positives in antivirusesMarc Cornellà
2023-04-02fix(extract): safely remove extract directoryMarc Cornellà
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.
2023-04-02feat(extract): always extract files into its own folder (#11596)Marc Cornellà
2023-04-02fix(vi-mode): fix cursor change on visual mode (#11586)Marc Cornellà
Fixes #11586
2023-04-02docs(spotify): fix link (#11593)Saverio Guzzo
2023-04-01fix(updater): search for upstream remote if using non-conventional name (#11135)Marc Cornellà
Fixes #11135
2023-03-31fix(upgrade): typo in variable checkCarlo Sala
2023-03-31fix(vi-mode): fix check for prompt redisplay on mode change (#11547)Marc Cornellà
2023-03-31feat(changelog): provide links in changelog (#11578)Guy Sartorelli
2023-03-31fix(installer): don't use `sudo` when user is in Termux (#11591)Webpage-gh
Co-authored-by: Marc Cornellà <hello@mcornella.com>