tab-switcher

Most recently used (MRU) tab switcher for Atom.

oggy

27,992

66

1.5.6

MIT

GitHub

This package consumes the following services:

Tab Switcher

Atom package that let's you easily and elegantly switch between your most recently active tabs. Like "Command-TAB" or "Alt-TAB" for applications.

Screenshot

Visual design is inspired by Witch, a slick Mac OS window switcher.

Default Keys

Using different keys

You can specify alternate key bindings in keymap.cson (menu: Atom -> Keymap). A popular desire is to replace the built-in ctrl-tab and ctrl-shift-tab.

"atom-workspace":
  "ctrl-tab": "tab-switcher:next"
  "ctrl-tab ^ctrl": "unset!"
  "ctrl-shift-tab": "tab-switcher:previous"
  "ctrl-shift-tab ^ctrl": "unset!"

"ol.tab-switcher-tab-list":
  "^ctrl": "tab-switcher:select"
  "^shift": "tab-switcher:select"
  "ctrl-up": "tab-switcher:previous"
  "ctrl-down": "tab-switcher:next"
  "ctrl-escape": "tab-switcher:cancel"
  "ctrl-n": "tab-switcher:next"
  "ctrl-p": "tab-switcher:previous"
  "ctrl-w": "tab-switcher:close"
  "ctrl-s": "tab-switcher:save"

Icons

Icons are optional, and are provided by the file-icons package.

Contributing

Copyright

Copyright (c) George Ogata. See LICENSE for details.