(n int)
| 1139 | } |
| 1140 | |
| 1141 | func plural(n int) string { |
| 1142 | if n == 1 { |
| 1143 | return "" |
| 1144 | } |
| 1145 | return "s" |
| 1146 | } |
| 1147 | |
| 1148 | // hintText returns the keymap hint shown under the input box. Changes with |
| 1149 | // the active focus so the user always sees which keys are live. |