mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-11-01 01:31:13 +00:00
Add a function to define a style if not defined
This commit is contained in:
parent
59f448d6ed
commit
113f6763c2
@ -13,6 +13,7 @@ Functions
|
|||||||
- `is-callable` checks if a name is a command, function, or alias.
|
- `is-callable` checks if a name is a command, function, or alias.
|
||||||
- `is-true` checks a boolean variable for "true".
|
- `is-true` checks a boolean variable for "true".
|
||||||
- `coalesce` prints the first non-empty string in the arguments array.
|
- `coalesce` prints the first non-empty string in the arguments array.
|
||||||
|
- `zstyle-` defines a style if it is already not defined.
|
||||||
|
|
||||||
Authors
|
Authors
|
||||||
-------
|
-------
|
||||||
|
@ -30,3 +30,7 @@ function coalesce {
|
|||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Defines a style if it is already not defined.
|
||||||
|
function zstyle- {
|
||||||
|
zstyle -T "$1" "$2" && zstyle "$@"
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user