Zsh
The Z shell (Zsh) is an extended Bourne shell with a large number of improvements and additional features.
Here are 4,044 public repositories matching this topic...
From https://github.com/kennethreitz/autoenv :
Note: you should probably use direnv instead. Simply put, it is higher quality software. But, autoenv is still great, too. Maybe try both? :)
-
Updated
May 7, 2020 - Shell
-
Updated
Apr 23, 2020 - Shell
Is your feature request related to a problem? Please describe.
Check for Zsh version for compatibility with prompt.
Describe the solution you'd like
autoload -Uz is-at-least && if ! is-at-least 5.2; then
print "ERROR: You're using zsh version ${ZSH_VERSION}, and versions < 5.2 are not supported. Update your zsh." >&2
return 1
fi
Neither here nor powerline/fonts has any documentation of what codepoints are supposed to be provided with which glyphs by fonts. This makes it virtually impossible for font authors to add support.
Also, I’ve seen you use the PUA. Please register your codepoints with http://www.evertype.com/standards/csur/ so they don’t overlap with any other CSUR PUA assignments. (It’s easy, I got a couple ass
Thanks a ton for any helpful feedback
I need help with getting best quality GIFs.
I am not used to CSS syntax so it would be amazing if you add a lot of example config.yml files. Also, try adding config.yml files for the GIFs you are displaying in your README.md. They look fantastic. I have spent hours trying to get perfect GIF but no luck.
I don't know what value to give for shadow
A history expansion followed by a character ineligible for history expansion (e.g. =
) isn't highlighted correctly. !!=
unquoted is all highlighted as history expansion and "!!="
terminates the history expansion style on the first !
rather than the second.
-
Updated
May 1, 2020 - Shell
Feature Request
Is your feature request related to a problem? Please describe.
I realized that starship has no documentation in Portuguese (Brazil), so I would like to contribute with project and add pt_BR translation.
Describe the solution you'd like
Documentation in Portuguese (Brazil).
Contributing
If you are interested in contributing, please take a look
Ive tried using path and exact variants to no avail.
# /home/pbaum/.config/direnv/direnv.toml
[whitelist]
prefix = [ "/mnt/data/filesystem/home/x/Development/hosts" ]
prefix = [ "/home/x/Development/hosts" ]
exact = [ "/mnt/data/filesystem/home/x/Development/hosts/hc1/.envrc" ]
exact = [ "/home/x/Development/hosts/hc1/.envrc" ]
$ cd /home/x/Development/hosts/hc1
$ direnv
Description
The "Requirements" wiki page has a TODO
placeholder under the FreeBSD heading. The correct command to install antigen under FreeBSD is:
pkg install zsh-antigen
Steps to reproduce
Visit Requirements on the z
The lines https://github.com/holman/dotfiles/blob/master/zsh/config.zsh#L18 and https://github.com/holman/dotfiles/blob/master/zsh/config.zsh#L26 seem to specify incompatible options. The second line also repeats SHARE_HISTORY
.
From The Z Shell Manual:
SHARE_HISTORY <K>
This option both imports new commands from the history
- The first example can have few more chained prompts (It shows the power of enquirer in a few seconds)
- Todo can be moved to the bottom & can be a section (Below Contribution section)
- The 'Related prompts' section can be moved below 'Example Usage'. After the gif, the code should be shown (It is correct for Input prompt)
- The example should be complete. It should match exac
On the default settings, each segment is padded on either end by a space " ". This adds visual appeal and clarity. On the other hand, it adds two characters per segment. It'd be nice to customize this option for users who want powerline to span fewer characters.
Would a left_pad
and right_pad
option be useful?
(PS. This project is awesome. Thanks!)
-
Updated
Jan 26, 2020
I cannot see any docs on how the OCSP feature is suppose to work. Please document it. Thanks.
I am wondering if autoenv could not be used in complex CI environments where we have multiple steps and where we need to save/restore status between different steps.
We are currently doing appending variables inside some env_jenkins.properties
files and on some some steps (builders) and on others we do source env_jenkins.properties
in order to load them.
If autoenv
would work also for
Very keen to switch to zplug. Wondering if there is a recipe how to port my dotfiles from prezto?
There is a difference depending on running nfty inside a Python shell (call notify.notification() ) and run ntfy from commandline. I think the reason is a different default config file location.
In my case, I have created a config file under ~/.ntfy.yml and ntfy use that config when i run it from console (it sends notification via pushover). But when i try to send a notification from a inter
The current instructions: README.md#oh-my-zsh, suggest to add zsh-completions to plugins
and rerun compinit
.
But that's sub-optimal. This will cause Zsh to rebuild the completion cache twice on each Zsh invocation: The first when you source oh-my-zsh, and the second time whe
Expose a method to show the help string whenever I want to, like it being the default command of my program.
Program would be something like:
program
.version(package.version)
.action(() => program.showHelp())
.command('real command')
.action((args, options, logger) => /* do stuff */);
program.parse(process.argv);
// ./myprog
/* ... prints help ... */
I
It would be cool if we could have some more documentation in the help text.
- Explain how to use Ctrl-C and Ctrl-Z in a presentation (this is self explanatory for CLI veterans, but many users might not be so experienced. Ctrl-C and Crtl-Z are really a great part of how to use the programm in a presentation)
- Explain how <prompt_themes> work: How can I create my own? Where can I find premade o
-
Updated
Oct 24, 2019 - Shell
Build on macOS > doc
There is problem with new libreadline7
available via brew which is incompatible with previous versions.
Thus the only way forward seems to be readline compilation from the source code and clashing includes (different autoconf in build/, build script for macos).
Docker got pretty popular.
Maybe add it out of the box, or as a plugin.
I can get it working by following official instruction for non oh-my-zsh, but I kinda like zimfw cuz theres so little additional work needed... I just get it and its done.
Created by Paul Falstad
Released 1990
- Repository
- zsh-users/zsh
- Website
- www.zsh.org
- Wikipedia
- Wikipedia
It would be good if the docs and
--help
output could mention thatnvm install
installs and uses the given Node version. I've probably wasted hours typingnvm install __ && nvm use __
, - just discovered the second part has been unnecessary since this was fixed in 2014 :)