Commit ae9457d8 authored by Robby Russell's avatar Robby Russell
Browse files

Merge pull request #487 from dreur/upstream-spectrum-utility

Add utility method to spectrum
parents 34f00f38 cbaa97d8
......@@ -18,3 +18,11 @@ for color in {000..255}; do
FG[$color]="%{[38;5;${color}m%}"
BG[$color]="%{[48;5;${color}m%}"
done
# Show all 256 colors with color number
function spectrum_ls() {
for code in {000..255}; do
print -P -- "$code: %F{$code}Test%f"
done
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment