(s styles)
| 20 | // together at the end they are a group you can skip past. |
| 21 | func modifiersLast(bindings []helpBinding) []helpBinding { |
| 22 | plain := make([]helpBinding, 0, len(bindings)) |
| 23 | chorded := make([]helpBinding, 0, len(bindings)) |
| 24 | for _, binding := range bindings { |
| 25 | if strings.Contains(binding.key, "+") { |
| 26 | chorded = append(chorded, binding) |
| 27 | } else { |