Is it possible to select a specific tab in OSX Terminal.app using keyboard shortcuts? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T23:51:31Z http://stackoverflow.com/feeds/question/166695 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/166695/is-it-possible-to-select-a-specific-tab-in-osx-terminal-app-using-keyboard-shortc 3 Is it possible to select a specific tab in OSX Terminal.app using keyboard shortcuts? p3t0r 2008-10-03T12:56:57Z 2009-06-04T21:07:43Z <p>I know I can cycle through my tabs using cmd+{ or cmd+}, but is it possible to select a specific tab (i.e. cmd+3 for the third tab in iTerm) in Leopards' Terminal.app? </p> http://stackoverflow.com/questions/166695/is-it-possible-to-select-a-specific-tab-in-osx-terminal-app-using-keyboard-shortc/171357#171357 0 Answer by RET for Is it possible to select a specific tab in OSX Terminal.app using keyboard shortcuts? RET 2008-10-05T02:15:36Z 2008-10-05T10:13:19Z <p><em>Yes it is, you use Command-1, Command-2 etc. Have a look under the <b>Window</b> menu, and you'll see the windows listed with their shortcut equivalent. (The 'clover-leaf' is the symbol for the Command key - also known as the Apple key.)</em></p> <p>My apologies - missed the fact you were referring to Tabs first time around. I don't believe there is any other keyboard shortcut to switch between Tabs beyond Cmd-{ and }. Perhaps if that's important, don't group them in the first place? Leave them as separate windows?</p> http://stackoverflow.com/questions/166695/is-it-possible-to-select-a-specific-tab-in-osx-terminal-app-using-keyboard-shortc/311642#311642 1 Answer by Ryan E for Is it possible to select a specific tab in OSX Terminal.app using keyboard shortcuts? Ryan E 2008-11-22T18:51:34Z 2008-11-22T18:51:34Z <p>This is an option. <a href="http://ciaranwal.sh/2007/12/10/tab-switching-in-terminal" rel="nofollow" title="Tab Switching in Terminal">Tab Switching in Terminal</a></p> http://stackoverflow.com/questions/166695/is-it-possible-to-select-a-specific-tab-in-osx-terminal-app-using-keyboard-shortc/953105#953105 0 Answer by Topher Fangio for Is it possible to select a specific tab in OSX Terminal.app using keyboard shortcuts? Topher Fangio 2009-06-04T21:07:43Z 2009-06-04T21:07:43Z <p>I would highly suggest using <a href="http://www.gnu.org/software/screen/" rel="nofollow">GNU Screen</a> if you really need tabs that much. I have a particular .screenrc file that makes life easier, just put the following in your home directory in a file called <code>.screenrc</code>:</p> <pre><code>defscrollback 1024 hardstatus on hardstatus alwayslastline hardstatus string "%{.bW}%-w%{.rW}%n %t%{-}%+w %=%{..G} %H %{..Y} %m/%d %C%a " </code></pre> <p>Also, when starting screen, I run <code>screen -c ~/.screenrc.programming</code> which looks like this:</p> <pre><code>source $HOME/.screenrc screen -t World screen -t Server screen -t Console screen -t Command screen -t Editor screen -t MySQL </code></pre> <p>This will open a bunch of 'tabs' that you can switch between using <code>Ctrl-A,n</code> and <code>Ctrl-A,p</code> or <code>Ctrl-A</code> followed by a number to switch directly to one.</p>