浏览代码

Added the spectrum_bls function, which prints all 256 colors set as the
background.

We can easily see which color we want to set when changing the PS1 shell variable,
since the colors are more distinctive.

dejan 11 年之前
父节点
当前提交
f057737e57
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. 7 0
      lib/spectrum.zsh

+ 7 - 0
lib/spectrum.zsh

@@ -26,3 +26,10 @@ function spectrum_ls() {
   done
   done
 }
 }
 
 
+# Show all 256 colors where the background is set to specific color
+function spectrum_bls() {
+  for code in {000..255}; do
+    ((cc = code + 1))
+    print -P -- "$BG[$code]$code: Test %{$reset_color%}"
+  done
+}