diff options
author | Benjamin Chausse <benjamin.chausse@goto.com> | 2025-03-26 17:21:12 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin.chausse@goto.com> | 2025-03-26 17:21:12 -0400 |
commit | 091c845c79b0aaf031e2fbbeaa91edb45d8d0272 (patch) | |
tree | 1f652e7951911f875ae2e218b29bd1a2a778d542 /internal/app/description.txt | |
parent | ee994af6151654045e9a2543e360d2554fc4f851 (diff) |
De-bloat + goreleaser packages manpage
Diffstat (limited to 'internal/app/description.txt')
-rw-r--r-- | internal/app/description.txt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/internal/app/description.txt b/internal/app/description.txt new file mode 100644 index 0000000..cf58bd6 --- /dev/null +++ b/internal/app/description.txt @@ -0,0 +1,23 @@ +Termpicker is a terminal-based application designed to help users select and manipulate colors efficiently. Its keybindings are meant to be intuitive to vim users as it behaves in a modal way: + +Normal mode: + + - h,l: decrease/increase the current slider coarsely by 5% + - H,L: decrease/increase the current slider finely by 1 + - j,k: select the slider below/above + - <Tab>,<S-Tab>: move to the next/previous tab + - f,b : copy the color as an ANSI foreground/background escape code + - x,r,s,c: copy the color as a hex, rgb, hsl, or cmyk value + - ?: expand/shrink the help menu + - i,<cmd>: enter Insert mode + - q,<C-c>: quit the application + +Insert mode: + + Manually type a color. Pressing will cancel/leave insert mode. Anything in + the following formats will be used as a color input when pressing enter: + + - Hex: #rrggbb + - RGB: rgb( r, g, b) + - CMYK: cmyk(c, m, y, k) + - HSL: hsl(h, s, l) |