Giter Club home page Giter Club logo

Comments (2)

tony avatar tony commented on June 20, 2024

Hi!

Can you restate some of the above? It isn't clear to me.

On a side note: PRs, especially ones with good tests, are also welcome

from libtmux.

Timoses avatar Timoses commented on June 20, 2024

Hey tony. Sure.

As an example, I have the following

session = None
sessions = self._server.attached_sessions
if len(sessions) > 1:
    log.info('There are more than 1 sessions active. Unable to detect active one.')
elif len(sessions) == 1:
    session = sessions[0]
else:
    log.info('No active sessions found.')

session.attached_window.select_pane(3)

I use only one client attached to one session, which I make sure is true.

The session is always correct (the one I am active in).
However, running select_pane(3) on the attached window always switches the pane in one specific session (even when I am active in another and the session variable is correct.

The select_pane method ultimately calls the window function self.cmd here: https://github.com/tmux-python/libtmux/blob/master/src/libtmux/window.py#L163

self.cmd("select-pane", "-t%s" % target_pane)

(select-pane -t3)

This ends up in the server function self.server.cmd here: https://github.com/tmux-python/libtmux/blob/master/src/libtmux/window.py#L141

self.server.cmd(cmd, *args, **kwargs)

(select-pane -t3)

Which then ends up here: https://github.com/tmux-python/libtmux/blob/master/src/libtmux/server.py#L177

tmux_cmd(*cmd_args, **kwargs)

which will probably end up in calling tmux select-pane -t3.

=> This does not switch the pane in the active session window, but in another one.

I just tested a bit. When I run the shell command tmux select-pane -t3 in any session it correctly switches the pane.

Could it be that, because the python program (doing the switching) is running in another session, it always switches panes in that session?
^ I just tested above theory: and yes, that is the case.

=> I think it would be wise to always pass the session_id and window_id with the -t argument!?

from libtmux.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.