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.
Merge remote-tracking branch 'upstream/master'
* upstream/master: Set WORDCHARS in the editor module [Fix sorin-ionescu#422] Revert "Remove no longer necessary key bindings" Update external history-substring-search Sort Git conflict aliases [Fix sorin-ionescu#403] Display accented characters properly Correct typos in git module README Wrap errant long line in git module README Fix misspellings of the word bellow in READMEs Remove no longer necessary key bindings Update external history-substring-search Update external syntax-highlighting Update external completions [Fix sorin-ionescu#399] Only enable the main syntax highlighter Use the builtin $signals array Add Emacs module [Fix sorin-ionescu#396] Remove the osx trash function [Fix sorin-ionescu#398] Manually set locale Conflicts: runcoms/zpreztorc
- Loading branch information
Showing
19 changed files
with
89 additions
and
86 deletions.
There are no files selected for viewing
Submodule external
updated
18 files
+2 −2 | README.md | |
+1 −1 | src/_ack | |
+5 −0 | src/_adb | |
+89 −0 | src/_ag | |
+21 −5 | src/_brew | |
+44 −0 | src/_dzen2 | |
+36 −4 | src/_gem | |
+93 −8 | src/_git-flow | |
+33 −1 | src/_heroku | |
+70 −0 | src/_id3 | |
+116 −0 | src/_id3v2 | |
+8 −1 | src/_knife | |
+61 −0 | src/_logger | |
+144 −81 | src/_port | |
+52 −8 | src/_sbt | |
+49 −12 | src/_scala | |
+233 −0 | src/_socat | |
+169 −0 | src/_svm |
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,33 @@ | ||
Emacs | ||
===== | ||
|
||
Enables Emacs dependency management. | ||
|
||
Dependency management | ||
--------------------- | ||
|
||
[Carton][1] installs and manages Emacs packages for Emacs package development | ||
and Emacs configuration. | ||
|
||
This module prepends the Carton directory to the path variable to enable the | ||
execution of `carton`. | ||
|
||
Aliases | ||
------- | ||
|
||
### Carton | ||
|
||
- `cai` installs dependencies. | ||
- `cau` updates dependencies. | ||
- `caI` initializes the current directory for dependency management. | ||
- `cae` executes a command which correct dependencies. | ||
|
||
Authors | ||
------- | ||
|
||
*The authors of this module should be contacted via the [issue tracker][2].* | ||
|
||
- [Sebastian Wiesner](https://github.com/lunaryorn) | ||
|
||
[1]: https://github.com/rejeep/carton | ||
[2]: 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 @@ | ||
# | ||
# Configures Emacs dependency management. | ||
# | ||
# Authors: Sebastian Wiesner <[email protected]> | ||
# | ||
|
||
# Enable Carton | ||
if [[ -d "$HOME/.carton" ]]; then | ||
path=($HOME/.carton/bin $path) | ||
|
||
alias cai='carton install' | ||
alias cau='carton update' | ||
alias caI='carton init' | ||
alias cae='carton exec' | ||
fi |
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 |
---|---|---|
|
@@ -6,22 +6,14 @@ | |
# Sorin Ionescu <[email protected]> | ||
# | ||
|
||
# Trap signals were generated with 'kill -l'. | ||
# DEBUG, EXIT, and ZERR are Zsh signals. | ||
_trap_signals=( | ||
ABRT ALRM BUS CHLD CONT EMT FPE HUP ILL INFO INT IO KILL PIPE PROF QUIT | ||
SEGV STOP SYS TERM TRAP TSTP TTIN TTOU URG USR1 USR2 VTALRM WINCH XCPU XFSZ | ||
DEBUG EXIT ZERR | ||
) | ||
|
||
# Adds a function name to a list to be called when a trap is triggered. | ||
function add-zsh-trap { | ||
if (( $# < 2 )); then | ||
print "usage: $0 type function" >&2 | ||
return 1 | ||
fi | ||
|
||
if [[ -z "$_trap_signals[(r)$1]" ]]; then | ||
if [[ -z "$signals[(r)$1]" ]]; then | ||
print "$0: unknown signal: $1" >&2 | ||
return 1 | ||
fi | ||
|
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -26,7 +26,7 @@ export PAGER='less' | |
# | ||
|
||
if [[ -z "$LANG" ]]; then | ||
eval "$(locale)" | ||
export LANG='en_US.UTF-8' | ||
fi | ||
|
||
# | ||
|
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