mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-15 23:08:16 +08:00
Compare commits
4 Commits
d055445625
...
39c79493fe
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
39c79493fe | ||
|
|
77f7457051 | ||
|
|
47d30784c5 | ||
|
|
63922b5ec4 |
7
.github/CODEOWNERS
vendored
7
.github/CODEOWNERS
vendored
@ -1,4 +1,5 @@
|
||||
# Plugin owners
|
||||
plugins/gitfast/ @felipec
|
||||
plugins/sdk/ @rgoldberg
|
||||
plugins/git-lfs/ @vietduc01100001
|
||||
plugins/aws/ @maksyms
|
||||
plugins/git-lfs/ @vietduc01100001
|
||||
plugins/gitfast/ @felipec
|
||||
plugins/sdk/ @rgoldberg
|
||||
|
||||
2
.github/ISSUE_TEMPLATE/feature_request.md
vendored
2
.github/ISSUE_TEMPLATE/feature_request.md
vendored
@ -1,7 +1,7 @@
|
||||
---
|
||||
name: Feature request
|
||||
about: Suggest a feature for Oh My Zsh
|
||||
labels: 'feature'
|
||||
labels: 'Feature'
|
||||
|
||||
---
|
||||
|
||||
|
||||
2
.github/ISSUE_TEMPLATE/support.md
vendored
2
.github/ISSUE_TEMPLATE/support.md
vendored
@ -1,7 +1,7 @@
|
||||
---
|
||||
name: Support
|
||||
about: Request support for any problem you're having with Oh My Zsh
|
||||
labels: 'support'
|
||||
labels: 'Support'
|
||||
|
||||
---
|
||||
|
||||
|
||||
@ -61,7 +61,7 @@ function asp() {
|
||||
else
|
||||
aws_access_key_id="$(aws configure get aws_access_key_id --profile $1)"
|
||||
aws_secret_access_key="$(aws configure get aws_secret_access_key --profile $1)"
|
||||
aws_session_token=""
|
||||
aws_session_token="$(aws configure get aws_session_token --profile $1)"
|
||||
fi
|
||||
|
||||
export AWS_DEFAULT_PROFILE=$1
|
||||
|
||||
@ -6,7 +6,8 @@ alias cless="colorize_less"
|
||||
ZSH_COLORIZE_PLUGIN_PATH=$0:A
|
||||
|
||||
colorize_check_requirements() {
|
||||
local available_tools=("chroma" "pygmentize")
|
||||
local -a available_tools
|
||||
available_tools=("chroma" "pygmentize")
|
||||
|
||||
if [ -z "$ZSH_COLORIZE_TOOL" ]; then
|
||||
if (( $+commands[pygmentize] )); then
|
||||
|
||||
Loading…
Reference in New Issue
Block a user