You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: Add bidirectional cross-references between sync and async pane methods
Complete bidirectional documentation linking by adding "See Also"
sections to sync methods pointing to their async counterparts.
Changes to src/libtmux/pane.py:
1. Pane.send_keys() → links to asend_keys()
- Added "See Also" section after parameters, before examples
2. Pane.capture_pane() → links to acapture_pane()
- Added "See Also" section after parameters
3. Pane.split() → links to asplit()
- Added "See Also" section after parameters, before examples
This completes the bidirectional documentation linking pattern:
- Async methods already link to sync versions (added in previous commits)
- Sync methods now link to async versions (this commit)
Users can now easily discover async alternatives when reading sync
documentation and vice versa, providing seamless navigation between
the two API styles.
Related: Phase 1 async expansion - documentation improvements
0 commit comments