(self, binds)
| 39 | return "Key Bindings" |
| 40 | |
| 41 | def format_keys(self, binds): |
| 42 | kvs = [] |
| 43 | for b in binds: |
| 44 | k = b.key |
| 45 | if b.key == " ": |
| 46 | k = "space" |
| 47 | kvs.append((k, b.help or b.command)) |
| 48 | return common.format_keyvals(kvs) |
| 49 | |
| 50 | def keybindings(self): |
| 51 | text = [urwid.Text([("title", "Common Keybindings")])] |