forked from sorin-ionescu/prezto
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* master: (37 commits) updated externals [Fix sorin-ionescu#522] Do not load the terminal module in non-graphical terminals [Fix sorin-ionescu#516] Define ZLE functions separately Revert "Warn that Cygwin is not supported" Revert "Remove utility aliases for Cygwin" Don't use sudo if implicitly called by Pacman frontend [Fix sorin-ionescu#514] Use /tmp when $TMPDIR is undefined Fix README.md: PATH was moved from .zshenv to .zprofile [Fix sorin-ionescu#523] Ensure zprofile exists before sourcing it Allow functions in a module to be symlinks Update copyright Refactor Bundler aliases Update external completions Update external history-substring-search Update external syntax-highlighting Update copyright Fix heading level for "zpreztorc" [Fix sorin-ionescu#503] Prefix rails aliases with 'bundle exec' Warn that Cygwin is not supported Remove utility aliases for Cygwin ...
- Loading branch information
Showing
24 changed files
with
281 additions
and
170 deletions.
There are no files selected for viewing
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,14 @@ | |
# Joseph Jon Booker <[email protected]> | ||
# | ||
|
||
# Load command-not-found on Debian-based distributions. | ||
if [[ -s '/etc/zsh_command_not_found' ]]; then | ||
source '/etc/zsh_command_not_found' | ||
# Load command-not-found on Arch Linux-based distributions. | ||
elif [[ -s '/usr/share/doc/pkgfile/command-not-found.zsh' ]]; then | ||
source '/usr/share/doc/pkgfile/command-not-found.zsh' | ||
# Return if requirements are not found. | ||
if [[ ! -s '/etc/zsh_command_not_found' ]]; then | ||
else | ||
return 1 | ||
fi | ||
|
||
source '/etc/zsh_command_not_found' | ||
|
Submodule external
updated
17 files
+40 −5 | src/_brew | |
+126 −30 | src/_cabal | |
+25 −1 | src/_cpanm | |
+35 −0 | src/_dget | |
+53 −15 | src/_eselect | |
+51 −0 | src/_exportfs | |
+41 −0 | src/_gist | |
+1 −0 | src/_heroku | |
+152 −0 | src/_httpie | |
+32 −7 | src/_manage.py | |
+136 −0 | src/_middleman | |
+463 −0 | src/_mpv | |
+4 −1 | src/_optirun | |
+11 −12 | src/_rvm | |
+117 −0 | src/_salt | |
+33 −46 | src/_setup.py | |
+1 −1 | src/_vagrant |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
Ocaml | ||
===== | ||
|
||
Initializes [Ocaml][1] package management. | ||
|
||
OPAM | ||
---- | ||
|
||
[OPAM][2] is a package manager for Ocaml. | ||
|
||
This module enables local package installation with OPAM by extending the | ||
relevant path and Ocaml variables. | ||
|
||
### Usage | ||
|
||
Install packages to your local package directory with `opam install`. | ||
|
||
Authors | ||
------- | ||
|
||
*The authors of this module should be contacted via the [issue tracker][3].* | ||
|
||
- [Sebastian Wiesner](https://github.com/lunaryorn) | ||
|
||
[1]: http://ocaml.org/ | ||
[2]: http://opam.ocamlpro.com/ | ||
[3]: https://github.com/sorin-ionescu/prezto/issues | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# | ||
# Initializes Ocaml package management. | ||
# | ||
# Authors: | ||
# Sebastian Wiesner <[email protected]> | ||
# | ||
|
||
# Return if requirements are not found. | ||
if (( ! $+commands[opam] )); then | ||
return 1 | ||
fi | ||
|
||
# Initialize OPAM. | ||
eval "$(opam config env)" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
# Sorin Ionescu <[email protected]> | ||
# | ||
|
||
local tmp="$TMPDIR/pacman-disowned-$UID-$$" | ||
local tmp="${TMPDIR:-/tmp}/pacman-disowned-$UID-$$" | ||
local db="$tmp/db" | ||
local fs="$tmp/fs" | ||
|
||
|
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
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
Oops, something went wrong.