47

Keyboard shortcuts in gnome-terminal (Ctrl+Tab and Ctrl+Shift+Tab) in 12.04 don't seem to be working. Is there a setting that I dont know of?

Eliah Kagan
  • 119,640
PnotNP
  • 3,209

7 Answers7

86

A way to configure this is by setting gsettings from the terminal itself (two commands):

gsettings set org.gnome.Terminal.Legacy.Keybindings:/org/gnome/terminal/legacy/keybindings/ next-tab '<Primary>Tab'
gsettings set org.gnome.Terminal.Legacy.Keybindings:/org/gnome/terminal/legacy/keybindings/ prev-tab '<Primary><Shift>Tab'

Source: the last comment in the bug report

26

Use dconf Editor. If it's not installed by default you can get it with sudo apt-get install dconf-tools. The shortcut can be modified at Org > Gnome > Terminal > Legacy > Keybindings.

Screenshot of dconf Editor

This works for me in Ubuntu Gnome 16.04. Reference: https://bugzilla.gnome.org/show_bug.cgi?id=738325

20

Unfortunately assigning shortcuts with TAB key is a no go in Gnome (for whatever reason). So this will not work.

There is a way to do this in a hacky way, from the answer below type this in the terminal:

gsettings set org.gnome.Terminal.Legacy.Keybindings:/org/gnome/terminal/legacy/keybindings/ next-tab '<Primary>Tab'
gsettings set org.gnome.Terminal.Legacy.Keybindings:/org/gnome/terminal/legacy/keybindings/ prev-tab '<Primary><Shift>Tab'
3

Use Ctrl+PageUP and Ctrl+PageDown (annoying, but it is what we have).

1

This may be a little heretic to do in gnome but you can install Konsole and have those shortcuts like so:

sudo apt install konsole

The shortcut Ctrl+Tab is set by default.

Note: Konsole is the KDE default terminal

Zanna
  • 72,312
jogarcia
  • 153
0

Resetting the dconf to 'factory setting' might help sometime(At least in my case when my Ctrl+T was not working system wide)

dconf reset -f /org/gnome/
AEM
  • 1,156
  • 2
  • 14
  • 19
Rahul
  • 405
0

One thing very interesting I found days ago is that the gnome does:
- Ctrl+Tab Switch between different application
- Ctrl+`(The one above Tab) Switch between different windows of one application
Try this.

chi chow
  • 136