1session_name: sampleconfig
2start_directory: '/usr'
3windows:
4- window_name: supposed to be /usr/bin
5  window_index: 1
6  start_directory: /usr/bin
7  options:
8      main-pane-height: 50
9  panes:
10  - shell_command:
11    - echo "hey"
12  - shell_command:
13    - echo "moo"
14- window_name: support to be /dev
15  window_index: 2
16  start_directory: /dev
17  panes:
18  - shell_command:
19    - echo hello
20  - shell_command:
21    - echo "hey"
22  - shell_command:
23    - echo "moo"
24- window_name: cwd containing a space
25  window_index: 3
26  start_directory: {TEST_DIR}
27  panes:
28  - shell_command:
29    - echo hello
30  - shell_command:
31    - echo "hey"
32  - shell_command:
33    - echo "moo"
34- window_name: testsa3
35  window_index: 4
36  panes:
37  - shell_command:
38    - echo hello
39  - shell_command:
40    - echo "hey"
41  - shell_command:
42    - echo "moo3"
43- window_name: cwd relative to start_directory since no rel dir entered
44  window_index: 5
45  start_directory: ./
46  panes:
47  - shell_command:
48    - echo hello
49  - shell_command:
50    - echo "hey"
51  - shell_command:
52    - echo "moo3"
53