summaryrefslogtreecommitdiffstats
path: root/colorschemes
diff options
context:
space:
mode:
authorCaleb Bassi <calebjbassi@gmail.com>2018-04-13 22:17:57 -0700
committerCaleb Bassi <calebjbassi@gmail.com>2018-04-14 07:44:06 -0700
commite185593334611bb7cedd5ff8d3df6657d7dbc1f6 (patch)
treed3f0540bc6594af877e603edc5fc85dafb1a299b /colorschemes
parent674b04b0ad577c220eec7d752f984bab8687c9ca (diff)
Code cleanup
Diffstat (limited to 'colorschemes')
-rw-r--r--colorschemes/template.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/colorschemes/template.go b/colorschemes/template.go
index f5a84bb..cee067e 100644
--- a/colorschemes/template.go
+++ b/colorschemes/template.go
@@ -8,11 +8,9 @@ package colorschemes
You can combine a color with 'Bold', 'Underline', or 'Reverse' by using bitwise OR ('|') and the name of the attribute.
For example, to get Bold red Labels, you would do 'Labels: 2 | Bold'.
- Once you've created a colorscheme, add an entry for it in the `handleColorscheme` function
- in `gotop.go`.
+ Once you've created a colorscheme, add an entry for it in the `handleColorscheme` function in `gotop.go`.
*/
-// Ignore this
const (
Bold int = 1 << (iota + 9)
Underline