(arg string)
| 826 | } |
| 827 | |
| 828 | func parseKeyArg(arg string) string { |
| 829 | // If this is a raw escape sequence, convert it to its raw byte form |
| 830 | return strings.ReplaceAll(arg, "\\x1b", "\x1b") |
| 831 | } |
| 832 | |
| 833 | // ShowKeyCmd displays the action that a key is bound to |
| 834 | func (h *BufPane) ShowKeyCmd(args []string) { |
no outgoing calls
no test coverage detected