10

Pressing alt + tab brings up a carousel of all the icons of my open applications, and by hitting tab I can cycle through them. By releasing tab it brings the window of the application I'm currently on to the front of the screen.

But how do I quickly and efficiently jump to an application that has multiple windows open? I often have multiple Terminal windows open, for example. But I have to cycle onto the terminal icon, and then cycle through all of the open terminal windows to find the window I want.

In OSX, an application with multiple windows can still be quickly 'tabbed' into because it opens the last window of the application that you were working on (I think). Can I emulate this behaviour, or at least speed up my workflow in Ubuntu? I want to jump between sublime text and the last terminal window I was working in (of my many terminal windows).

Starkers
  • 3,149

4 Answers4

12

Pressing alt + ` will bring up the app switcher but only for windows of that application, if that's what you're looking for.

Also, Super + Tab will switch through applications by running down the Unity Launcher, and when you open the application with multiple windows, it will automatically open the last active window.

3

When too many apps are open, searching in the Activities Overview can prove to be more useful. Activities Overview can be accessed with the Super key.

For example, to quickly switch to using the Google Chrome app :

  • Press Super
  • Type prefix "ch" and press Enter to switch to using the Google Chrome app.

With this method, you jump directly to the desired app without having to worry about the open windows.

1

You can create keyboard shortcuts(key bindings) to jump to your preferred apps quickly using jumpapp.

For example, since I am a software engineer who relies on efficiently using the Terminal, Google-Chrome, and Visual-Studio-Code apps a lot, I bound:

  • Terminal: Ctrl + P
  • Google Chome: Alt + Q
  • Visual Studio Code: Ctrl + M

It took a little while to build muscle memory, but the benefit definitely outweighed the cost.

important : Because jumpapp works best with X11 window manager, you will need to switch from Wayland(default window manager) to X11 window manager using instructions here or here

1

If you press Alt + Tab and get into the application switcher, you can press Up or Down keys to switch between different windows of the currently highlighted app.

cduguet
  • 111