Hi there,

I recently saw that emacs can replace tmux, but I haven’t found complete information about it.

  • TistelTech@alien.topB
    link
    fedilink
    English
    arrow-up
    1
    ·
    10 months ago

    ssh remote_machine

    # create a new screen session

    screen -S multibuffer

    emacs # console mode aka -nw

    # do all the screen splits needed

    # m-x shell to start any number of shells

    # CTRL-D to disconnect

    # leave machine

    exit

    # decide to go back

    ssh remote_machine

    # reconnect to existing shell

    screen -r multibuffer

    # tada! your shells are back