Skip to content

Commit 7c48514

Browse files
committed
README link fixes
1 parent 41e67ec commit 7c48514

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

README.rst

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,15 @@
1-
libtmux - library for managing tmux workspaces
1+
libtmux - scripting library for tmux
22

33
|pypi| |docs| |build-status| |coverage| |license|
44

5-
libtmux is the library that powers `tmuxp`_, a tool that helps tmux users
6-
manage their workspaces.
5+
libtmux is the tool behind `tmuxp`_, a tmux workspace manager in python.
76

8-
Take control of tmux via python.
7+
it builds upon tmux' `target`_ and `formats`_ to create an object
8+
mappings to traverse, inspect and interact with live tmux sesssions.
99

10-
View the `documentation`_ homepage, `API`_ information and `architectural
10+
view the `documentation`_ homepage, `API`_ information and `architectural
1111
details`_.
1212

13-
.. _tmuxp: https://github.com/tony/tmuxp
14-
.. _documentation: https://libtmux.readthedocs.io/
15-
.. _API: https://libtmux.readthedocs.io/api.html
16-
.. _architectural details: https://libtmux.readthedocs.io/internals.html
17-
1813
install
1914
-------
2015

@@ -61,12 +56,12 @@ find session::
6156

6257
find session by dict lookup::
6358

64-
>>> server.findWhere({ "session_name": "foo" })
59+
>>> server.find_where({ "session_name": "foo" })
6560
Session($3 foo)
6661

6762
assign session to ``session``::
6863

69-
>>> session = server.findWhere({ "session_name": "foo" })
64+
>>> session = server.find_where({ "session_name": "foo" })
7065

7166
play with session::
7267

@@ -131,6 +126,15 @@ powerful traversal features::
131126
>>> pane.window.session
132127
Session($3 foo)
133128

129+
.. _BSD: http://opensource.org/licenses/BSD-3-Clause
130+
.. _developing and testing: http://libtmux.readthedocs.io/developing.html
131+
.. _tmuxp: https://github.com/tony/tmuxp
132+
.. _documentation: https://libtmux.readthedocs.io/
133+
.. _API: https://libtmux.readthedocs.io/api.html
134+
.. _architectural details: https://libtmux.readthedocs.io/internals.html
135+
.. _formats: http://man.openbsd.org/OpenBSD-5.9/man1/tmux.1#FORMAT
136+
.. _target: http://man.openbsd.org/OpenBSD-5.9/man1/tmux.1#COMMANDS
137+
134138
Project details
135139
---------------
136140

@@ -168,10 +172,6 @@ tests .. code-block:: bash
168172
$ make test
169173
============== ==========================================================
170174

171-
.. _BSD: http://opensource.org/licenses/BSD-3-Clause
172-
.. _developing and testing: http://libtmux.readthedocs.io/developing.html
173-
.. _Issues tracker: https://github.com/tony/libtmux/issues
174-
175175
.. |pypi| image:: https://img.shields.io/pypi/v/libtmux.svg
176176
:alt: Python Package
177177
:target: http://badge.fury.io/py/libtmux

0 commit comments

Comments
 (0)