Returns: self.stacks, with the focused stack first.
(self)
| 239 | self.focus_changed() |
| 240 | |
| 241 | def stacks_sorted_by_focus(self): |
| 242 | """ |
| 243 | Returns: |
| 244 | self.stacks, with the focused stack first. |
| 245 | """ |
| 246 | stacks = self.stacks.copy() |
| 247 | stacks.insert(0, stacks.pop(self.pane)) |
| 248 | return stacks |
| 249 | |
| 250 | def current(self, keyctx): |
| 251 | """ |
no test coverage detected