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 1925ab9 commit df7e74eCopy full SHA for df7e74e
tmuxp/workspacebuilder.py
@@ -323,7 +323,10 @@ def get_pane_start_directory():
323
Applies window configurations relevant after window and pane creation.
324
"""
325
def config_after_window(self, w, wconf):
326
- if 'options_after' in wconf and isinstance(wconf['options_after'], dict):
+ if (
327
+ 'options_after' in wconf and
328
+ isinstance(wconf['options_after'], dict)
329
+ ):
330
for key, val in wconf['options_after'].items():
331
w.set_window_option(key, val)
332
0 commit comments