Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-05-11 | composer: use cache to fix slowness during startup | Michael Stucki | |
Fixes #6647 Closes #6664 | |||
2020-05-09 | magic-enter: define bindkey for vi mode as well | Marc Cornellà | |
Closes #8906 | |||
2020-05-05 | gitfast: proper synchronization (#8550) | Felipe Contreras | |
2020-04-30 | sdk: support completion of new commands in 5.8.0 (#8870) | Ross Goldberg | |
2020-04-30 | sdk: improve sdkman completion (#8854) | Ross Goldberg | |
2020-04-26 | aws: fix aws_change_access_key function with awscli v2 (#8816) | tom139 | |
2020-04-26 | jsontools: correct usage for is_json (#8857) | Tapan Avasthi | |
2020-04-22 | autojump: clarify need to install it first | Marc Cornellà | |
Related: #8806 | |||
2020-04-13 | composer: fix cdo alias due to command api change (#8828) | Shahin Sorkh | |
2020-04-10 | tig: add more info in README (#8818) | schnatterer | |
For more convenient plugin exploring. | |||
2020-04-05 | battery: revert battery charging symbol 1-character-width hack | Marc Cornellà | |
Fixes #8804 | |||
2020-04-05 | themes: fix minor syntax error | Marc Cornellà | |
2020-04-03 | gnu-utils: append make to cmds (#8794) | Monson Shao | |
GNU "make" is installed as "gmake" by homebrew. | |||
2020-03-30 | colorized-man-pages: add hooks for dman and debman commands (#8776) | Felix Stupp | |
* colorized-man-pages: Added hooks for commands dman and debman `dman` and `debman` are tools from the package `debian-goodies` for Debian systems (see https://packages.debian.org/stable/debian-goodies). They can display man pages from manpages.debian.org or local debian packages respectively. README of the plugin is also updated. * Simplify syntax for future changes * Fix README syntax Co-authored-by: Marc Cornellà <marc.cornella@live.com> | |||
2020-03-30 | battery: remove printf usage where possible | Marc Cornellà | |
Spares us of the need to quote % symbols | |||
2020-03-30 | battery: fix Full battery bug on Linux; force 1-char-width on charging symbol | Marc Cornellà | |
2020-03-25 | keychain: define SHORT_HOST if not defined | Marc Cornellà | |
Fixes problems when using the plugin via antibody or antigen. | |||
2020-03-25 | systemd: remove newline from systemd prompt (#8772) | Jon | |
2020-03-24 | git: fix markdown in README (#8769) | glechic | |
2020-03-24 | history-substring-search: fixing my dumb mistake | Marc Cornellà | |
2020-03-24 | history-substring-search: update to upstream version 2019-05-12 | Marc Cornellà | |
Updates OMZ's copy to commit 0f80b8eb3368b46e5e573c1d91ae69eb095db3fb from zsh-users/zsh-history-substring-search | |||
2020-03-23 | themes: change lstheme function to themes in $ZSH_CUSTOM in any level | Marc Cornellà | |
Also sort and remove duplicates, and pipe to fmt to improve output format. Fixes #8755 | |||
2020-03-23 | dotenv: add agree-once improvement to confirmation prompt (#8729) | Jędrzej Lewandowski | |
* dotenv: add possibility to agree once for a given .env file * refactor: fix code style * Use :A modifier instead of readlink. Thanks Aloxaf * Use grep and clean up allowed list check logic * Simplify and reorder file; change default allowed list path * Add new feature to README * Make sure ZSH_CACHE_DIR is defined * Resolve symlinks in $PWD before storing in allowed list Co-authored-by: Aloxaf <bailong104@gmail.com> Co-authored-by: Marc Cornellà <marc.cornella@live.com> | |||
2020-03-22 | virtualenvwrapper: look in $HOME/.local/bin directory (#8758) | Hector S | |
2020-03-21 | direnv: change direnv to not assume path (#8757) | Dan Rose | |
On Ubuntu, direnv is not installed in `/usr/local`. | |||
2020-03-20 | Add direnv plugin (#8666) | Moritz Schwörer | |
2020-03-19 | update path for snapd /snap/bin/* which is used by Linux systems (#8752) | Mark | |
Co-authored-by: mark horsfield <markhfromakron@gmail.com> | |||
2020-03-16 | man: use only first element of command before prepending man (#8747) | wurza | |
Co-authored-by: Michael Wurzer <michael.wurzer@sequality.at> Co-authored-by: Marc Cornellà <marc.cornella@live.com> | |||
2020-03-12 | taskwarrior: update completion to latest version (dcdf712) | Marc Cornellà | |
Fixes #8249 | |||
2020-03-12 | autoenv: look in additional installation locations, redo logic | Andrew Janke | |
Fixes #4681 Co-authored-by: Marc Cornellà <marc.cornella@live.com> | |||
2020-03-11 | Clean up plugin READMEs and a few plugins | Marc Cornellà | |
- fasd - history - mercurial - pylint - repo - yii2 | |||
2020-03-11 | z: add markdown Readme (#8715) | Christoph Bachhuber | |
2020-03-10 | archlinux: fix wrong parameters in pacfiles alias (#8712) | LuFan Zhong | |
2020-03-10 | sdk: remove invalid value "candidates" from sdk flush completion (#8725) | Ross Goldberg | |
2020-03-09 | gradle: use upstream completion and fix some other stuff | Marc Cornellà | |
Fixes #6239 Fixes #7946 Fixes #8017 Fixes #8717 Closes #7987 Closes #8718 | |||
2020-03-09 | aws: fix awscli completion path on NixOS (#8707) | B YI | |
2020-03-09 | nvm: add `install-latest-npm` to completion (#8709) | Nick Paterno | |
2020-03-09 | phing: fix copy-paste error in README | Marc Cornellà | |
2020-03-05 | aws: add support for AWS CLI v2 autocompletion (#8670) | Marc Cornellà | |
Co-authored-by: Marc Cornellà <marc.cornella@live.com> | |||
2020-03-05 | shrink-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-04 | arcanist: add functions which allow copy-pasting of URLS (#8688) | Alexey Györi | |
Co-authored-by: Marc Cornellà <marc.cornella@live.com> | |||
2020-03-04 | rbenv: fix rbenv_prompt_info prefix and suffix (#3764) | chieping | |
Closes #3764 | |||
2020-03-04 | knife: fix refactor mistake | Marc Cornellà | |
2020-03-04 | knife: improve knife-solo support in completion (#3315) | Masato Ikeda | |
Closes #1944 Closes #3315 | |||
2020-03-03 | kube-ps1: update to latest upstream version (c685ac8) | Marc Cornellà | |
Closes #8009 Co-authored-by: Jon Mosco <jonny.mosco@gmail.com> | |||
2020-03-03 | git: make the gpristine alias remove untracked git repos (#8697) | Jean-Yves Rivallan | |
2020-03-02 | Some tweaks to the Jira plugin | Josh 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-02 | Clean up jira function | Marc Cornellà | |
2020-03-02 | Better support for branch name | RoToRx88 | |
Enable to get issue from branch prefixed with it and delimited by '_' | |||
2020-03-02 | Uppercase the issue in open issue command in the JIRA plugin | Matthew Manuel | |