summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-12-16fix(cli): fix plugin and theme suggestions in completion for older zsh versionsMarc Cornellà
2021-12-16fix: declare variables as global when using `typeset`Marc Cornellà
Fixes fb86ec77
2021-12-14style: use `typeset` for dynamic variable namesMarc Cornellà
2021-12-13feat(archlinux): add aliases for cleaning package cache (#10091)K Harishankar
Co-authored-by: K Harishankar <48408097+Haritronic909@users.noreply.github.com>
2021-12-13fix(ys): use default color instead of gray for improved readability (#10506)deimosian
2021-12-13fix: quote % characters in ruby prompt info functionsMarc Cornellà
2021-12-13style(rbenv): adapt to code styleMarc Cornellà
2021-12-13style(chruby): fix plugin code style and loading processMarc Cornellà
2021-12-13style(rbfu): clean up codeMarc Cornellà
2021-12-13refactor(themes): use `ruby_prompt_info` everywhereMarc Cornellà
2021-12-13style(simonoff): fix code style and optimize use of variablesMarc Cornellà
2021-12-13fix(jonathan): fix theme for non-UTF8 localesMarc Cornellà
2021-12-13style(jonathan): fix code style in jonathan themeMarc Cornellà
2021-12-13fix(bira): fix color bleed in user_host prompt section (#10505)Marc Cornellà
Fixes #10505
2021-12-13refactor(adben): simplify used variables and %-quote prompt functionsMarc Cornellà
Closes #10474 Co-authored-by: Tom Payne <twpayne@gmail.com>
2021-12-13fix(lib): %-quote git prompt functionsMarc Cornellà
2021-12-13refactor(shell-proxy)!: rename env vars to `SHELLPROXY_*` and add usage ↵fengkx
message (#10456) BREAKING CHANGE: the `DEFAULT_PROXY` setting has been renamed to `SHELLPROXY_URL`, and `CONFIG_PROXY` has been renamed to `SHELLPROXY_CONFIG`. See the plugin README for more information. Co-authored-by: Marc Cornellà <hello@mcornella.com>
2021-12-13feat(afowler): add mercurial supportFrank Van Damme
Closes #5992
2021-12-13style(afowler): simplify code and remove unnecessary variablesMarc Cornellà
2021-12-13style(af-magic): fix code style and remove unnecessary variablesMarc Cornellà
2021-12-13fix(mercurial): correctly check for untracked files in `hg_dirty` (#2177)David Sutherland
Closes #2177 Closes #6197 Co-authored-by: Henrik Ravn <hravnx@gmail.com>
2021-12-13perf(mercurial): optimize utility functionsMarc Cornellà
2021-12-13feat(mercurial): add `hgci` alias for interactive commit (#8912)Pandu POLUAN
Closes #8912
2021-12-13feat(bira): improve theme and add support for mercurial (#6631)Romain Failliot
Added the red dot (instead of the default `*`) if the branch is dirty. The bira theme only supported git, now it supports mercurial as well. It needed ito call `hg_prompt_info` and the `ZSH_THEME_HG_PROMPT_` variables. Closes #6631
2021-12-13feat(mercurial)!: use `PREFIX` and `SUFFIX` settings in `hg_prompt_info` (#6631)Romain Failliot
BREAKING CHANGE: the `hg_prompt_info` function now uses `ZSH_THEME_HG_PROMPT_PREFIX` and `ZSH_THEME_HG_PROMPT_SUFFIX` variables when displaying branch information, similar to the `git_prompt_info` function. Closes #6631
2021-12-13perf(mercurial): improve performance of `hg_prompt_info` (#7929)anatolyrr
Replaced two different calls of hg with one `hg --id --branch` for retrieving information whether we're in a repo (will be empty if not), whether the repo is dirty (revision id will contain "+" if there are uncommitted changed), and the branch name. Closes #6197 Closes #7929
2021-12-13fix(mercurial): show author name in `hgsl` alias log alias (#3500)Nicolas Cavigneaux
Closes #3500
2021-12-07chore: add ohmyzsh GitHub Sponsors to FUNDING.ymlMarc Cornellà
2021-12-07ci(spelling): turn off check-spelling action temporarilyMarc Cornellà
2021-12-07ci(spelling): automatically accept aliased commands (#10475)Josh Soref
Co-authored-by: Josh Soref <jsoref@users.noreply.github.com>
2021-12-07chore: update security docs and link to huntr.devMarc Cornellà
2021-12-02ci: add `check-spelling` action (#10470)Josh Soref
Co-authored-by: Josh Soref <jsoref@users.noreply.github.com>
2021-12-01feat(branch): show mercurial bookmarks if used (#9948)whoami
Co-authored-by: Marc Cornellà <hello@mcornella.com>
2021-12-01feat(updater): show command to update when update skipped (#10465)Nick Aldwin
2021-12-01Revert "ci: add `check-spelling` GitHub Action"Marc Cornellà
This reverts commit aef393bdce523ed5e5754721965fab2da8080119.
2021-12-01ci: add `check-spelling` GitHub ActionMarc Cornellà
2021-12-01chore: fix spelling errors across the project (#10459)Josh Soref
Co-authored-by: Josh Soref <jsoref@users.noreply.github.com>
2021-11-30chore: update new issue templatesMarc Cornellà
2021-11-30feat(cli): add `omz version` commandMarc Cornellà
2021-11-27feat(aws): Adds the login option for AWS SSO (#9921)Nicholas Hawkes
2021-11-27feat(git): Add alias for rebasing to origin/main-branch (#10445)Markus Hofbauer
2021-11-26feat(dotnet): add alias for `dotnet build` command (#10435)Adam Cwyk
Co-authored-by: Adam Cwyk <git@adamcwyk.dev>
2021-11-25feat(xcode): support `.swiftpm` as project file in `xc` (#10434)Kyle
2021-11-25fix(lib): don't error if `INSIDE_EMACS` is not defined (#10443)Paul Scott
2021-11-25fix(updater): stop update if `$ZSH` is not a git repository (#10448)Marc Cornellà
Fixes #10448
2021-11-17style(bundler): simplify `bundled_commands` array operationsMarc Cornellà
2021-11-17fix(bundler): use BUNDLE_JOBS in `bi` to avoid config file changeMarc Cornellà
When calling `bundle install` with `--jobs=<n>`, bundle persists this argument in `.bundle/config`. If we run `BUNDLE_JOBS=<n> bundle install` instead, this is not persisted. Fixes #10425
2021-11-17fix(bgnotify): avoid permission prompts by checking frontmost app ID (#10318)Aurora
Co-authored-by: Marc Cornellà <hello@mcornella.com>
2021-11-17fix(docker-compose)!: check for old command instead of calling `docker` (#10409)Marc Cornellà
BREAKING CHANGE: the plugin now checks for the `docker-compose` command instead of trying whether `docker compose` is a valid command. This means that if the old command is still installed it will be used instead. To use `docker compose`, uninstall any old copies of `docker-compose`. Fixes #10409
2021-11-17fix(osx): deprecate `osx` plugin without symlink (#10428)Marc Cornellà
Fixes #10428