Skip to content

Commit eb452b7

Browse files
committed
!squash README base indexes
1 parent 37c3183 commit eb452b7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Create new window in the background (don't switch to it):
103103

104104
```python
105105
>>> session.new_window(attach=False, window_name="ha in the bg")
106-
Window(@2 ...:ha in the bg, Session($1 ...))
106+
Window(@2 2:ha in the bg, Session($1 ...))
107107
```
108108

109109
Close window:
@@ -118,14 +118,14 @@ Grab remaining tmux window:
118118
```python
119119
>>> window = session.attached_window
120120
>>> window.split_window(attach=False)
121-
Pane(%2 Window(@1 ...:..., Session($1 ...)))
121+
Pane(%2 Window(@1 1:... Session($1 ...)))
122122
```
123123

124124
Rename window:
125125

126126
```python
127127
>>> window.rename_window('libtmuxower')
128-
Window(@1 ...:libtmuxower, Session($1 ...))
128+
Window(@1 1:libtmuxower, Session($1 ...))
129129
```
130130

131131
Split window (create a new pane):
@@ -134,7 +134,7 @@ Split window (create a new pane):
134134
>>> pane = window.split_window()
135135
>>> pane = window.split_window(attach=False)
136136
>>> pane.select_pane()
137-
Pane(%3 Window(@1 ...:..., Session($1 ...)))
137+
Pane(%3 Window(@1 1:..., Session($1 ...)))
138138
>>> window = session.new_window(attach=False, window_name="test")
139139
>>> window
140140
Window(@2 2:test, Session($1 ...))
@@ -175,7 +175,7 @@ Traverse and navigate:
175175

176176
```python
177177
>>> pane.window
178-
Window(@1 ...:..., Session($1 ...))
178+
Window(@1 1:..., Session($1 ...))
179179
>>> pane.window.session
180180
Session($1 ...)
181181
```

0 commit comments

Comments
 (0)