3

Is there a way to make Cmd+1 switch to the first tab, Cmd+2 to switch to the second and so on..?

I'd much rather not use SIMBL..

David Phelan
  • 597
  • 2
  • 8
dbr
  • 5,147

5 Answers5

2

One (still relatively hacky) option would be to assign shortcuts to AppleScripts like this:

tell app "Safari" to tell window 1 to set current tab to tab 1

---

tell app "Safari" to tell window 1 to set current tab to last tab

You could use Automator services or third party apps like FastScripts or Keyboard Maestro to assign the shortcuts.

Lri
  • 42,502
  • 8
  • 126
  • 159
bVs
  • 21
  • 3
1

Check this new plugin (OSX Lion only):

Safari Tab Switching is a Safari SIMBL plugin which allow switching between tabs using Cmd+1-9.

Diogo
  • 30,792
0

Technically, there is no real non-hacky solution, but you can always use cmd + shift + (left or right arrow key) to switch the tab on the left or the tab on the right. I've always found that useful.

Zerium
  • 423
0

You want to use https://github.com/rs/SafariTabSwitching . If you find it does not work on later versions of OSX or Safari (I have it running on v8), you can look at https://github.com/rs/SafariTabSwitching/issues/27

Prasanth
  • 667
-2

Safari > Preferences > Tabs > "Use cmd-1 through cmd-9 to switch tabs"

Kasper
  • 103