I am using gnome-terminal version 3.20.2 with Ubuntu 16.10. I would like to determine the current keybindings in Gnome Terminal for switching to next tab using gsettings. This is similar to what is done in this answer for the Unity desktop.
From the menu in gnome-terminal I can change the key binding by selecting Terminal->Preferences->Shortcuts and then scrolling down to the Tabs heading and then clicking "Switch to Next Terminal". From this menu I can also see that my current binding is Ctrl+Right. How can I determine this binding from the command line using the gsettings command?
Edit:
I tried:
$ gsettings get org.gnome.Terminal.Legacy.Keybindings:/ next-tab
'<Control>Page_Down'
but this gives the default binding Ctrl+PageDown; I would like to get the current binding, which is Ctrl+Right.