tmux “last-session” binding











up vote
7
down vote

favorite
2












How could I bind to last (most recent) session? The obvious last-session leads to an "unknown command" error.



bind-key z last-session









share|improve this question


























    up vote
    7
    down vote

    favorite
    2












    How could I bind to last (most recent) session? The obvious last-session leads to an "unknown command" error.



    bind-key z last-session









    share|improve this question
























      up vote
      7
      down vote

      favorite
      2









      up vote
      7
      down vote

      favorite
      2






      2





      How could I bind to last (most recent) session? The obvious last-session leads to an "unknown command" error.



      bind-key z last-session









      share|improve this question













      How could I bind to last (most recent) session? The obvious last-session leads to an "unknown command" error.



      bind-key z last-session






      keyboard-shortcuts tmux






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Sep 18 '13 at 10:14









      mahemoff

      373313




      373313






















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          13
          down vote



          accepted










          Don't know about how to bind to the Eject key (it's too far from the home keys anyway!) but this will do the trick:



          bind-key -n z switch-client -l





          share|improve this answer























          • Worked for me, thanks.
            – mahemoff
            Sep 19 '13 at 1:12










          • Doesn't this bind z to this action even without the tmux prefix? I'd prefer bind-key z switch-client -l so it's easier to type z into a terminal when it's needed.
            – davidvandebunte
            Nov 21 at 22:18


















          up vote
          1
          down vote













          In recent versions of tmux (e.g. 2.6) the key Prefix-L is already bound to the command switch-client -l which as user47464 pointed out is probably what you want.



          You can check your bindings with Prefix-?:



          ...
          bind-key -T prefix L switch-client -l
          ...





          share|improve this answer








          New contributor




          davidvandebunte is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.


















            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "106"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














             

            draft saved


            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f91222%2ftmux-last-session-binding%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            13
            down vote



            accepted










            Don't know about how to bind to the Eject key (it's too far from the home keys anyway!) but this will do the trick:



            bind-key -n z switch-client -l





            share|improve this answer























            • Worked for me, thanks.
              – mahemoff
              Sep 19 '13 at 1:12










            • Doesn't this bind z to this action even without the tmux prefix? I'd prefer bind-key z switch-client -l so it's easier to type z into a terminal when it's needed.
              – davidvandebunte
              Nov 21 at 22:18















            up vote
            13
            down vote



            accepted










            Don't know about how to bind to the Eject key (it's too far from the home keys anyway!) but this will do the trick:



            bind-key -n z switch-client -l





            share|improve this answer























            • Worked for me, thanks.
              – mahemoff
              Sep 19 '13 at 1:12










            • Doesn't this bind z to this action even without the tmux prefix? I'd prefer bind-key z switch-client -l so it's easier to type z into a terminal when it's needed.
              – davidvandebunte
              Nov 21 at 22:18













            up vote
            13
            down vote



            accepted







            up vote
            13
            down vote



            accepted






            Don't know about how to bind to the Eject key (it's too far from the home keys anyway!) but this will do the trick:



            bind-key -n z switch-client -l





            share|improve this answer














            Don't know about how to bind to the Eject key (it's too far from the home keys anyway!) but this will do the trick:



            bind-key -n z switch-client -l






            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Sep 19 '13 at 1:28









            jasonwryan

            48.6k14133182




            48.6k14133182










            answered Sep 19 '13 at 1:01







            user47464



















            • Worked for me, thanks.
              – mahemoff
              Sep 19 '13 at 1:12










            • Doesn't this bind z to this action even without the tmux prefix? I'd prefer bind-key z switch-client -l so it's easier to type z into a terminal when it's needed.
              – davidvandebunte
              Nov 21 at 22:18


















            • Worked for me, thanks.
              – mahemoff
              Sep 19 '13 at 1:12










            • Doesn't this bind z to this action even without the tmux prefix? I'd prefer bind-key z switch-client -l so it's easier to type z into a terminal when it's needed.
              – davidvandebunte
              Nov 21 at 22:18
















            Worked for me, thanks.
            – mahemoff
            Sep 19 '13 at 1:12




            Worked for me, thanks.
            – mahemoff
            Sep 19 '13 at 1:12












            Doesn't this bind z to this action even without the tmux prefix? I'd prefer bind-key z switch-client -l so it's easier to type z into a terminal when it's needed.
            – davidvandebunte
            Nov 21 at 22:18




            Doesn't this bind z to this action even without the tmux prefix? I'd prefer bind-key z switch-client -l so it's easier to type z into a terminal when it's needed.
            – davidvandebunte
            Nov 21 at 22:18












            up vote
            1
            down vote













            In recent versions of tmux (e.g. 2.6) the key Prefix-L is already bound to the command switch-client -l which as user47464 pointed out is probably what you want.



            You can check your bindings with Prefix-?:



            ...
            bind-key -T prefix L switch-client -l
            ...





            share|improve this answer








            New contributor




            davidvandebunte is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.






















              up vote
              1
              down vote













              In recent versions of tmux (e.g. 2.6) the key Prefix-L is already bound to the command switch-client -l which as user47464 pointed out is probably what you want.



              You can check your bindings with Prefix-?:



              ...
              bind-key -T prefix L switch-client -l
              ...





              share|improve this answer








              New contributor




              davidvandebunte is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
              Check out our Code of Conduct.




















                up vote
                1
                down vote










                up vote
                1
                down vote









                In recent versions of tmux (e.g. 2.6) the key Prefix-L is already bound to the command switch-client -l which as user47464 pointed out is probably what you want.



                You can check your bindings with Prefix-?:



                ...
                bind-key -T prefix L switch-client -l
                ...





                share|improve this answer








                New contributor




                davidvandebunte is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.









                In recent versions of tmux (e.g. 2.6) the key Prefix-L is already bound to the command switch-client -l which as user47464 pointed out is probably what you want.



                You can check your bindings with Prefix-?:



                ...
                bind-key -T prefix L switch-client -l
                ...






                share|improve this answer








                New contributor




                davidvandebunte is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.









                share|improve this answer



                share|improve this answer






                New contributor




                davidvandebunte is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.









                answered Nov 22 at 18:29









                davidvandebunte

                1111




                1111




                New contributor




                davidvandebunte is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.





                New contributor





                davidvandebunte is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.






                davidvandebunte is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.






























                     

                    draft saved


                    draft discarded



















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f91222%2ftmux-last-session-binding%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    サソリ

                    広島県道265号伴広島線

                    Setup Asymptote in Texstudio