forked from ohmyzsh/ohmyzsh
-
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: (239 commits) tig: add more info in README (ohmyzsh#8818) battery: revert battery charging symbol 1-character-width hack lib: speed up slow parts of the lib files; other small fixes themes: fix minor syntax error gnu-utils: append make to cmds (ohmyzsh#8794) colorized-man-pages: add hooks for dman and debman commands (ohmyzsh#8776) battery: remove printf usage where possible battery: fix Full battery bug on Linux; force 1-char-width on charging symbol nebirhos: use short hostname in prompt keychain: define SHORT_HOST if not defined systemd: remove newline from systemd prompt (ohmyzsh#8772) git: fix markdown in README (ohmyzsh#8769) history-substring-search: fixing my dumb mistake history-substring-search: update to upstream version 2019-05-12 themes: change lstheme function to themes in $ZSH_CUSTOM in any level dotenv: add agree-once improvement to confirmation prompt (ohmyzsh#8729) virtualenvwrapper: look in $HOME/.local/bin directory (ohmyzsh#8758) direnv: change direnv to not assume path (ohmyzsh#8757) Add direnv plugin (ohmyzsh#8666) update path for snapd /snap/bin/* which is used by Linux systems (ohmyzsh#8752) ...
- Loading branch information
Showing
261 changed files
with
5,085 additions
and
2,558 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## Standards checklist: | ||
|
||
- [ ] The PR title is descriptive. | ||
- [ ] The PR doesn't replicate another PR which is already open. | ||
- [ ] I have read the contribution guide and followed all the instructions. | ||
- [ ] The code follows the code style guide detailed in the wiki. | ||
- [ ] The code is mine or it's from somewhere with an MIT-compatible license. | ||
- [ ] The code is efficient, to the best of my ability, and does not waste computer resources. | ||
- [ ] The code is stable and I have tested it myself, to the best of my abilities. | ||
|
||
## Changes: | ||
|
||
- [...] | ||
|
||
## Other comments: | ||
|
||
... |
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,36 @@ | ||
name: CI | ||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize | ||
branches: | ||
- master | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
tests: | ||
name: Run tests | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest] | ||
steps: | ||
- name: Set up git repository | ||
uses: actions/checkout@v2 | ||
- name: Install zsh | ||
if: runner.os == 'Linux' | ||
run: sudo apt-get update; sudo apt-get install zsh | ||
- name: Test installer | ||
run: sh ./tools/install.sh | ||
- name: Check syntax | ||
run: | | ||
for file in ./oh-my-zsh.sh \ | ||
./lib/*.zsh \ | ||
./plugins/*/*.plugin.zsh \ | ||
./plugins/*/_* \ | ||
./themes/*.zsh-theme; do | ||
zsh -n "$file" || return 1 | ||
done |
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 |
---|---|---|
|
@@ -4,3 +4,5 @@ custom/ | |
# temp files directories | ||
cache/ | ||
log/ | ||
*.swp | ||
.DS_Store |
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
Oops, something went wrong.