summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-03-11z: add markdown Readme (#8715)Christoph Bachhuber
2020-03-11updater: use hardcoded color sequences instead of tputMarc Cornellà
2020-03-11updater: use `git config` instead of `git -c` for git < v1.7.2Marc Cornellà
Fixes #8732
2020-03-10archlinux: fix wrong parameters in pacfiles alias (#8712)LuFan Zhong
2020-03-10sdk: remove invalid value "candidates" from sdk flush completion (#8725)Ross Goldberg
2020-03-09gradle: use upstream completion and fix some other stuffMarc Cornellà
Fixes #6239 Fixes #7946 Fixes #8017 Fixes #8717 Closes #7987 Closes #8718
2020-03-09aws: fix awscli completion path on NixOS (#8707)B YI
2020-03-09nvm: add `install-latest-npm` to completion (#8709)Nick Paterno
2020-03-09phing: fix copy-paste error in READMEMarc Cornellà
2020-03-05lib: support konsole* $TERM in title function (#8035)Marc Cornellà
2020-03-05aws: add support for AWS CLI v2 autocompletion (#8670)Marc Cornellà
Co-authored-by: Marc Cornellà <marc.cornella@live.com>
2020-03-05shrink-path: added glob and quote options (#7694)Marc Cornellà
* Added -g option to shrink-path plugin. The new optins adds an asterix to the uniquely shortened name, such that, if copy'n'pasted, zsh globbing will expand to the full path name of the shortened path: shrink-path -g: "/net/software/modules/modulefiles" -> "/n*/s*/modules/m*" shrink-path -l -g: "/net/software/modules/modulefiles" -> "/n*/s*/modules/modulefiles" * Updated also the README file with the new -g option. * shrink-path: improved handling of special cases This commits improves the handling of special cases in path strings: - handling of white space in path names - handling of single-letter path names * Update plugins/shrink-path/README.md Co-Authored-By: Jacob Tomaw <jacob.tomaw@gmail.com> * Fix typo "Asterix" and replace with "asterisk" * Add optional quoting support to shrink_path Co-authored-by: Jacob Tomaw <jacob.tomaw@gmail.com>
2020-03-04arcanist: add functions which allow copy-pasting of URLS (#8688)Alexey Györi
Co-authored-by: Marc Cornellà <marc.cornella@live.com>
2020-03-04rbenv: fix rbenv_prompt_info prefix and suffix (#3764)chieping
Closes #3764
2020-03-04knife: fix refactor mistakeMarc Cornellà
2020-03-04knife: improve knife-solo support in completion (#3315)Masato Ikeda
Closes #1944 Closes #3315
2020-03-03kube-ps1: update to latest upstream version (c685ac8)Marc Cornellà
Closes #8009 Co-authored-by: Jon Mosco <jonny.mosco@gmail.com>
2020-03-03lib: automatic title: replace fg with description from jobs (#7982)Marc Cornellà
* Automatic title: Replace fg with description from jobs * Avoid error messages when there is no job * Use $jobstates and $jobtexts to look for jobs `jobs %string` doesn't work correctly when run inside `$()`. `$jobstates` and `$jobtexts` is available in the current shell process, so even though we need to replicate a bit more logic, every type of `fg` invocation works correctly. * lib: clean up termsupport.zsh Co-authored-by: Marc Cornellà <marc.cornella@live.com>
2020-03-03lib: clean up termsupport.zshMarc Cornellà
2020-03-03Use $jobstates and $jobtexts to look for jobsMarc Cornellà
`jobs %string` doesn't work correctly when run inside `$()`. `$jobstates` and `$jobtexts` is available in the current shell process, so even though we need to replicate a bit more logic, every type of `fg` invocation works correctly.
2020-03-03git: make the gpristine alias remove untracked git repos (#8697)Jean-Yves Rivallan
2020-03-03lib: use `command` to run rm in upgrade function (#8696)Marek Dědič
2020-03-02random: remove random theme from possible themes to choose fromMarc Cornellà
...preventing an infinite loop.
2020-03-02Merge branch 'update/jira-plugin'Marc Cornellà
Closes #6506 Closes #6950 Closes #7962
2020-03-02Some tweaks to the Jira pluginJosh Christopherson
[x] Updating `branch` command to be compatible with git-flow style branches by removing any prefix before attempting to go to the ticket number in Jira. [x] Removing the switch between /browse/ and /issues/ based off of the `JIRA_RAPID_BOARD` setting - as all issues are under browse now it seems.
2020-03-02Clean up jira functionMarc Cornellà
2020-03-02Better support for branch nameRoToRx88
Enable to get issue from branch prefixed with it and delimited by '_'
2020-03-02Uppercase the issue in open issue command in the JIRA pluginMatthew Manuel
2020-03-02sdk: add support for local versions and optimize sed calls (#7870)Andrea Nanni
* Added support for local sdk versions Added support for local versions (prefixed by '+'), so they are filtered out in _listInstallableVersions() and they are displayed correctly by _listAllVersion() * Optimize sed calls Co-authored-by: Marc Cornellà <marc.cornella@live.com>
2020-03-02python: add pyuserpaths function (#7758)0b10
Summary Make it get a list of installed interpreters, and add the relevant local (HOME) site-packages directory to PYTHONPATH. Reason To easily add all relevant paths, initially, and between upgrades. Add check for PYTHONUSERBASE Summary Check for a non-standard install directory, use it if one exists, otherwise use ~/.local. Reason Allow users to specify their own installation directory, without affecting functionality.
2020-03-02command-not-found: speed up call to Homebrew command-not-found (#7740)Hielke Walinga
By sourcing brew files directly we can achieve a very high speed up. This will not work if the user installed homebrew in a different location than by default.
2020-03-02shrink-path: add minimum length and ellipsis symbol options (#7382)Pavel N. Krivitsky
* Added minimum length and ellipsis symbol options for the shrink-path plugin. * Replaced tab indentation with space indentation for the shrink-path plugin. * Added handling of multicharacter ellipsis, and updated documentation and README for the shrink-path plugin.
2020-03-02minikube: cache command completions (#7446)Pavel Fokin
2020-03-02pip: add local Python package files to completion (#7442)Dan D'Avella
2020-03-02lib: use grep-alias cache only if ZSH_CACHE_DIR is writableMarc Cornellà
Fixes #8693
2020-03-01Document ZSH_THEME_RANDOM_BLACKLIST settingMarc Cornellà
2020-03-01Merge branch 'grep.zsh-improvements'Marc Cornellà
Closes #5085 Closes #7451 Closes #7265 Fixes #8444 Closes #8445
2020-03-01Refactor grep.zsh fileMarc Cornellà
- Move grep-alias path to variable. - Use <<< "" instead of piped echo to check grep flags. - Remove check for --color only since it's the same release as --exclude.
2020-03-01Fast algorithm to determine grep alias flagsMarc Cornellà
This version tries whether grep supports all the flags together and progressively checks older flags if the grep test fails. This means only one grep call if all flags are supported, and one additional call for every flag that's not supported, up to a maximum of 3 calls.
2020-03-01Performance enhancement for lib/grepmattmc3
- Use $ZSH_CACHE_DIR to store the grep alias with all the right features - Expire the cache after 24 hours - See issue #8444
2020-03-01Ignore .tox folder in grepShi Yan
2020-03-01Also set options for egrep and fgrepPeter Vandenberk
2020-03-01Exclude .idea folder from grep search scopeVital Kolas
2020-02-29Add git version requirement in documentationMarc Cornellà
2020-02-29updater: fix --autostash argument. Works for git > 1.7.1Marc Cornellà
See https://github.com/ohmyzsh/ohmyzsh/pull/7172#issuecomment-592875226
2020-02-28zsh_reload: respect `$ZDOTDIR` when searching for `.zshrc` (#7706)Alexander Schlarb
2020-02-28gitignore: add newline to `gi` output (#7586)Gianluca Recchia
* Add trailing new line at the end of output * Double-quote variable expansion
2020-02-28mercurial: add hga alias to README (#7547)Michal Kielan
2020-02-28mix: add format option to completion (#7256)Cody Fuller
2020-02-28gradle: fix command option name in completion (#6586)Wenbing Li
It should be `--rerun-tasks`, the original one miss a 's' at the end. See https://docs.gradle.org/current/userguide/command_line_interface.html