We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8b77cf commit a912b1aCopy full SHA for a912b1a
tmuxp/workspacebuilder.py
@@ -195,6 +195,9 @@ def build(self, session=None):
195
for w, wconf in self.iter_create_windows(session):
196
assert isinstance(w, Window)
197
198
+ for plugin in self.plugins:
199
+ plugin.on_window_create(w)
200
+
201
focus_pane = None
202
for p, pconf in self.iter_create_panes(w, wconf):
203
assert isinstance(p, Pane)
@@ -209,10 +212,11 @@ def build(self, session=None):
209
212
if 'focus' in wconf and wconf['focus']:
210
213
focus = w
211
214
- for plugin in self.plugins:
- plugin.on_window_create(w)
215
self.config_after_window(w, wconf)
216
217
218
+ plugin.after_window_finished(w)
219
220
if focus_pane:
221
focus_pane.select_pane()
222
0 commit comments