(self, context: str)
| 147 | return None |
| 148 | |
| 149 | def list(self, context: str) -> Sequence[Binding]: |
| 150 | b = [x for x in self.bindings if context in x.contexts or context == "all"] |
| 151 | single = [x for x in b if len(x.key.split()) == 1] |
| 152 | multi = [x for x in b if len(x.key.split()) != 1] |
| 153 | single.sort(key=lambda x: x.sortkey()) |
| 154 | multi.sort(key=lambda x: x.sortkey()) |
| 155 | return single + multi |
| 156 | |
| 157 | def handle(self, context: str, key: str) -> str | None: |
| 158 | """ |