Commit 0ee982b
committed
Pane,Window(fix[respawn]): use fused -c flag format for consistency
why: The pane/window split() and new_window() methods use the fused
form (f"-c{path}",) for the start-directory flag. The respawn methods
used the separated form ("-c", str(path)), diverging from the dominant
pattern in pane/window code.
what:
- Change Pane.respawn -c from ("-c", str(start_path)) to (f"-c{start_path}",)
- Change Window.respawn -c from ("-c", str(start_path)) to (f"-c{start_path}",)1 parent 015fdd4 commit 0ee982b
2 files changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1703 | 1703 | | |
1704 | 1704 | | |
1705 | 1705 | | |
1706 | | - | |
| 1706 | + | |
1707 | 1707 | | |
1708 | 1708 | | |
1709 | 1709 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
761 | 761 | | |
762 | 762 | | |
763 | 763 | | |
764 | | - | |
| 764 | + | |
765 | 765 | | |
766 | 766 | | |
767 | 767 | | |
| |||
0 commit comments