forked from sorin-ionescu/prezto
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
upstream #1
Open
mrGibi
wants to merge
186
commits into
mrGibi:master
Choose a base branch
from
sorin-ionescu:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
upstream #1
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
`tty` command infers the current TTY from file descriptor 0. `$TTY` gives current TTY directly. The latter works even when file descriptor 0 is redirected. It's also over 1000 times faster.
Add the following functions: - is-darwin - is-linux - is-bsd - is-cygwin And apply them everywhere I found code doing that what these functions do.
Adds the gfma and gfra aliases with the `--autostash` flag.
Release notes: - https://github.com/romkatv/powerlevel10k/releases/tag/v1.8.0 - https://github.com/romkatv/powerlevel10k/releases/tag/v1.8.1 - https://github.com/romkatv/powerlevel10k/releases/tag/v1.8.2 - https://github.com/romkatv/powerlevel10k/releases/tag/v1.9.0 - https://github.com/romkatv/powerlevel10k/releases/tag/v1.9.1 - https://github.com/romkatv/powerlevel10k/releases/tag/v1.10.0
[git] Add git pull autostash alias
Pyenv will install shims for commands that exist in any interpreter, even if it is not the current one. This means that a command may technically exist, but when executed will tell the user to try a different interpreter. The original check for pip in the Python module can fail for this reason, in particular on Ubuntu 20.04. This change checks with pyenv whether pip really exists in the current interpreter to work around this problem and fixes a bug in pip command detection.
The current implementation is not tamper-proof against a modified IFS. See discussion in #902 for details.
When $WORKON_HOME is not set and $ENV_NAME is equal to $PROJECT_ROOT/.venv which contains bin/activate then the code wrongly assumes workon is available. It should execute the second branch to source bin/activate.
This allows to cancel a tab completion, as ^_ in emacs mode.
Release notes: - https://github.com/romkatv/powerlevel10k/releases/tag/v1.14.0 - https://github.com/romkatv/powerlevel10k/releases/tag/v1.14.1 - https://github.com/romkatv/powerlevel10k/releases/tag/v1.14.2 - https://github.com/romkatv/powerlevel10k/releases/tag/v1.14.3
support zsh-history-substring-search `HISTORY_SUBSTRING_SEARCH_PREFIXED` env Signed-off-by: mritd <[email protected]>
add `prefixed` setting example comment Signed-off-by: mritd <[email protected]>
The startup logic and instructions have been updated for simplicity in pyenv 2.3.0. The workaround for pyenv init is no longer necessary. Signed-off-by: Indrajit Raychaudhuri <[email protected]>
Adjust instruction for setting custom `$ZDOTDIR`. This addresses 2 potential issues: - Check for the presence of `$XDG_CONFIG_HOME/zsh` before assigning it to `$ZDOTDIR` instead of blindly assigning - Avoid recursion in zsh variable assignment stack that might occasionally result in messages like: ``` zsh: job table full or recursion limit exceeded ```
Signed-off-by: Cameron Wong <[email protected]>
Removes dead screens from the list of candidate screens. Fixes issue 1253, "screen:auto-start problem with dead screens".
Local completion definition has been removed
This could sometimes be slow (as with any external command execution) but the result should almost never change.
Avoid checking age of cache file and just test for its existence. While this is simpler, this also avoids depending on having `EXTENDED_GLOB` enabled.
Fig is sunsetting as per https://fig.io/blog/post/fig-is-sunsetting
Although it has tags, the release flow it is not well estabilished, so it fall behind quite recurrently, thus why I'm updating it aginst the master branch (it was already out of the latest tag anyway). Ref: zsh-users/zsh-completions#1083
Signed-off-by: msdx321 <[email protected]>
Remove redundant quotes from comparisons and variable expansions where they are not needed. Also add style nits to comments and code.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Please be sure to check out our contributing guidelines
before submitting your pull request.
Fixes #
Proposed Changes