Age | Commit message (Collapse) | Author |
|
Closes #10426
|
|
|
|
|
|
|
|
Co-authored-by: C. Yavuzsen <cyavuzsen@comscore.com>
|
|
BREAKING CHANGE: the `zsh_reload` was deprecated long ago and showed
a deprecation message. The `src` function was replaced by the CLI
command `omz reload`, so use that instead from now on.
|
|
BREAKING CHANGE: the `django` plugin was deprecated in 2021-09-22. With
this change it has now been removed altogether. Zsh already provides
built-in completion for Django commands.
|
|
|
|
|
|
|
|
BREAKING CHANGE: the `npx` plugin used a feature of `npx` to check for
npm packages and run them if a command was not found. This feature was
removed in v7.0.0 and was deemed insecure. The `npx` plugin is now
officially deprecated and will be removed soon.
Fixes #10452
|
|
|
|
|
|
Co-authored-by: Marc Cornellà <hello@mcornella.com>
|
|
|
|
Closes #6555
|
|
|
|
|
|
|
|
Co-authored-by: Mike Mattice <mmattice@reliant.io>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Fixes #10578
|
|
|
|
When generating completions for Cargo, if the Rust sysroot
(i.e. `rustc +${${(z)$(rustup default)}[1]} --print sysroot`) contains
spaces, Cargo completions will not work because the spaces are not
escaped, thus passing two arguments to the "source" command instead of
one. The spaces need to be escaped for this to work.
|
|
|
|
|
|
|
|
|
|
By default, `typeset` defines variables locally unless in the main scope.
This is specially bad when using `omz plugin load`, which happens inside
a function, so the declared variables don't continue being defined when
the function finishes and the main scope reappears.
|
|
Fixes #10562
|
|
Fixes #10560
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|