Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-04-11 | docs(ssh-agent): macOS and p10k advices (#11612) | Josh McKinney | |
2023-04-09 | feat(archlinux): improve update function messages (#11608) | deimosian | |
2023-04-09 | fix(archlinux): keyring update function (#11607) | deimosian | |
2023-04-08 | feat(git): add merge squash alias (`gms`) (#10937) | Aleks | |
2023-04-08 | fix(azure): look properly for azure config file | Carlo Sala | |
Closes #11606 | |||
2023-04-07 | feat(archlinux): unify `upgrade` function (#11597) | deimosian | |
Co-authored-by: Carlo Sala <carlosalag@protonmail.com> | |||
2023-04-07 | fix(jump): even spacing between marks (#11601) | Alexander Huynh | |
2023-04-06 | fix(extract): fix conflict if compressed file has a folder of the same name | Marc 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-06 | feat(toolbox)!: rename and add aliases (#11580) | François M | |
2023-04-05 | feat(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-04 | feat(term_tab): add support for macOS (#11391) | Richard Mitchell | |
2023-04-04 | feat(termsupport): add contour terminal (#11599) | Christian Parpart | |
Signed-off-by: Christian Parpart <christian@parpart.family> | |||
2023-04-03 | fix(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-03 | fix(changelog): ignore lines containing whitespace in breaking change commits | Marc Cornellà | |
2023-04-03 | feat(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-03 | chore(installer): remove words triggering false positives in antiviruses | Marc Cornellà | |
2023-04-02 | fix(extract): safely remove extract directory | Marc 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-02 | feat(extract): always extract files into its own folder (#11596) | Marc Cornellà | |
2023-04-02 | fix(vi-mode): fix cursor change on visual mode (#11586) | Marc Cornellà | |
Fixes #11586 | |||
2023-04-02 | docs(spotify): fix link (#11593) | Saverio Guzzo | |
2023-04-01 | fix(updater): search for upstream remote if using non-conventional name (#11135) | Marc Cornellà | |
Fixes #11135 | |||
2023-03-31 | fix(upgrade): typo in variable check | Carlo Sala | |
2023-03-31 | fix(vi-mode): fix check for prompt redisplay on mode change (#11547) | Marc Cornellà | |
2023-03-31 | feat(changelog): provide links in changelog (#11578) | Guy Sartorelli | |
2023-03-31 | fix(installer): don't use `sudo` when user is in Termux (#11591) | Webpage-gh | |
Co-authored-by: Marc Cornellà <hello@mcornella.com> | |||
2023-03-28 | fix(aws): restore accidentally deleted variable | Carlo Sala | |
Closes #11589 | |||
2023-03-28 | feat(upgrade): add verbosity settings | Håvard Bartnes | |
Co-authored-by: Carlo Sala <carlosalag@protonmail.com> Closes #11574 Closes #11579 | |||
2023-03-23 | fix(uninstall): abort uninstall if unable to change shell (#10357) | Michele Bologna | |
2023-03-23 | feat(juju): add functions to get current controller and model (#11572) | Jose C. Massón | |
2023-03-21 | fix(aws): do not print region if it's not defined | Carlo Sala | |
Closes #11568 Closes #11570 | |||
2023-03-21 | feat(aws): set region when AWS_REGION is not set | Yu Xiang Zhang | |
2023-03-20 | feat(gnu-utils): add `gindent` (#11569) | vladislav doster | |
2023-03-12 | fix(lib): set equivalent LS_COLORS and LSCOLORS variables | Marc Cornellà | |
As reported by https://geoff.greer.fm/lscolors Fixes #11554 | |||
2023-03-10 | feat(rails): add `rta` alias (#11553) | Zhong Zheng | |
2023-03-08 | docs(vi-mode): document how to add vi-mode info on the prompt (#11548) | Benjamin Lieb | |
2023-03-07 | Fixing link to PA website in README | Robby Russell | |
Was linking to an old URL | |||
2023-03-07 | feat(vi-mode): add settings for vi-mode cursor styles (#10860) | Julien Vincent | |
2023-03-07 | fix(init): set completion colors on theme load, not with `precmd` | Marc Cornellà | |
This fixes an edge case where the user actually sets zstyle ':completion:*' list-colors in their zshrc, but the previous code used a precmd hook, which would override the user changes. With this change our modifications will be set in the init script, after the theme loads, so that later changes can affect our defaults. Note that this will not be run for users on plugin managers, as these don't generally run our init script. | |||
2023-03-07 | feat(aws): add AWS_REGION to aws_prompt_info (#10062) | potato | |
2023-03-07 | fix(aliases): group properly aliases (#11546) | Karim Benbourenane | |
2023-03-06 | fix(argocd): typo in filename | Carlo Sala | |
2023-03-04 | feat(argocd): add completion plugin | Carlo Sala | |
Co-authored-by: Sumudu Lansakara <sumudu.lansakara@ppro.com> Closes #9900 | |||
2023-03-03 | refactor(theme-and-appearance): reorganize and clean up logic (#11529) | Marc Cornellà | |
Co-authored-by: Andrew Janke <janke@pobox.com> Co-authored-by: Marcelo Parada <marcelo.parada@axoninsight.com> Co-authored-by: Uy Ha <hchanuy@gmail.com> Co-authored-by: Valentin Uveges <valentin.uveges@gmail.com> | |||
2023-03-03 | fix(lib): use `$BROWSER` in `open_command` if set (#11532) | Marc Cornellà | |
Fixes #11098 | |||
2023-03-02 | docs(brew): remove duplication (#11535) | Batuhan Şanlı | |
2023-03-01 | feat(rvm): add `rb32` alias (#11533) | Julian Suarez | |
2023-02-27 | fix(aliases): fix regression in filter argument | Marc Cornellà | |
2023-02-27 | fix(aliases): clarify how to pass in keywords to `acs` (#11521) | ZYX | |
Co-authored-by: Marc Cornellà <hello@mcornella.com> | |||
2023-02-27 | feat(nodenv): add plugin for `nodenv` (#9880) | Carlos Eduardo Monti | |
Co-authored-by: Matthew Boston <matthew@matthewboston.com> | |||
2023-02-26 | feat(macos): allow multiple man pages in `man-preview` (#11365) | Richard Mitchell | |