Fixed vim and zsh
This commit is contained in:
5
zsh/modules/git/functions/is-true
Normal file
5
zsh/modules/git/functions/is-true
Normal file
@ -0,0 +1,5 @@
|
||||
# Checks a boolean variable for "true".
|
||||
# Case insensitive: "1", "y", "yes", "t", "true", "o", and "on".
|
||||
is-true() {
|
||||
[[ -n "$1" && "$1" == (1|[Yy]([Ee][Ss]|)|[Tt]([Rr][Uu][Ee]|)|[Oo]([Nn]|)) ]]
|
||||
}
|
Reference in New Issue
Block a user