1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2026-01-16 23:37:55 +08:00

Compare commits

..

No commits in common. "39c79493feb71da4ba3b69eb82229804b27209cc" and "d05544562532fdf4d5f4a4d4eba01f4263e17cc7" have entirely different histories.

5 changed files with 7 additions and 9 deletions

7
.github/CODEOWNERS vendored
View File

@ -1,5 +1,4 @@
# Plugin owners
plugins/aws/ @maksyms
plugins/git-lfs/ @vietduc01100001
plugins/gitfast/ @felipec
plugins/sdk/ @rgoldberg
plugins/gitfast/ @felipec
plugins/sdk/ @rgoldberg
plugins/git-lfs/ @vietduc01100001

View File

@ -1,7 +1,7 @@
---
name: Feature request
about: Suggest a feature for Oh My Zsh
labels: 'Feature'
labels: 'feature'
---

View File

@ -1,7 +1,7 @@
---
name: Support
about: Request support for any problem you're having with Oh My Zsh
labels: 'Support'
labels: 'support'
---

View File

@ -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 configure get aws_session_token --profile $1)"
aws_session_token=""
fi
export AWS_DEFAULT_PROFILE=$1

View File

@ -6,8 +6,7 @@ alias cless="colorize_less"
ZSH_COLORIZE_PLUGIN_PATH=$0:A
colorize_check_requirements() {
local -a available_tools
available_tools=("chroma" "pygmentize")
local available_tools=("chroma" "pygmentize")
if [ -z "$ZSH_COLORIZE_TOOL" ]; then
if (( $+commands[pygmentize] )); then