summaryrefslogtreecommitdiff
path: root/plugins
AgeCommit message (Collapse)Author
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-04feat(term_tab): add support for macOS (#11391)Richard Mitchell
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-03-31fix(vi-mode): fix check for prompt redisplay on mode change (#11547)Marc Cornellà
2023-03-28fix(aws): restore accidentally deleted variableCarlo Sala
Closes #11589
2023-03-23feat(juju): add functions to get current controller and model (#11572)Jose C. Massón
2023-03-21fix(aws): do not print region if it's not definedCarlo Sala
Closes #11568 Closes #11570
2023-03-21feat(aws): set region when AWS_REGION is not setYu Xiang Zhang
2023-03-20feat(gnu-utils): add `gindent` (#11569)vladislav doster
2023-03-10feat(rails): add `rta` alias (#11553)Zhong Zheng
2023-03-08docs(vi-mode): document how to add vi-mode info on the prompt (#11548)Benjamin Lieb
2023-03-07feat(vi-mode): add settings for vi-mode cursor styles (#10860)Julien Vincent
2023-03-07feat(aws): add AWS_REGION to aws_prompt_info (#10062)potato
2023-03-07fix(aliases): group properly aliases (#11546)Karim Benbourenane
2023-03-06fix(argocd): typo in filenameCarlo Sala
2023-03-04feat(argocd): add completion pluginCarlo Sala
Co-authored-by: Sumudu Lansakara <sumudu.lansakara@ppro.com> Closes #9900
2023-03-02docs(brew): remove duplication (#11535)Batuhan Şanlı
2023-03-01feat(rvm): add `rb32` alias (#11533)Julian Suarez
2023-02-27fix(aliases): fix regression in filter argumentMarc Cornellà
2023-02-27fix(aliases): clarify how to pass in keywords to `acs` (#11521)ZYX
Co-authored-by: Marc Cornellà <hello@mcornella.com>
2023-02-27feat(nodenv): add plugin for `nodenv` (#9880)Carlos Eduardo Monti
Co-authored-by: Matthew Boston <matthew@matthewboston.com>
2023-02-26feat(macos): allow multiple man pages in `man-preview` (#11365)Richard Mitchell
2023-02-26fix(gnu-utils): reset ls alias to use GNU-based --color argument (#11527)Marc Cornellà
Fixes #11503
2023-02-24feat(iterm2): add shell integration script (#11509)Zoltán Reegn
2023-02-23fix(azure): load completion properly for brew (#11499)Carlo Sala
Closes #11497
2023-02-22feat(marked): remove unnecessary code冯不游
2023-02-22feat(marktext): add plugin冯不游
Closes #11507
2023-02-22feat(extract): support `obscpio` format (#11511)Filippo Bonazzi
Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
2023-02-21feat(terraform): add `tfc` alias (#10815)rohitbahekar
2023-02-21fix(terraform): go back to zsh custom completionCarlo Sala
Revert fcbfdf42de702d55174fe2b19142ba232289671e
2023-02-20feat(git): add aliases for gone branches (#9250)Francesco Ilario
Closes #8457 Closes #9973
2023-02-17feat(git): add `gpod` aliasguenthgr
Closes #11501
2023-02-17fix(gcloud): add location of latest snap install (#11502)Juan Antonio Ramírez
Latest snap installs gcloud at /snap/google-cloud-cli, so add that to the list of possible locations.
2023-02-12docs(lando): php support (#11491)Ruben van Erk
2023-02-12fix(fzf): installation dir for brew M1 (#11490)GrandZhuo
2023-02-11fix(gradle): move compdef line (#11488)Bartek Pacia
2023-02-09feat(gradle): update completion from upstream (#11485)Bartek Pacia
2023-02-08fix(git): `gpristine` requires two `--force` flagsCarlo Sala
Fixes #11483
2023-02-07docs(git): remove duplicated lineCarlo Sala