Skip to content

Instantly share code, notes, and snippets.

@grantpullen
Created April 17, 2019 13:35
Show Gist options
  • Save grantpullen/ccd7bea81cf940ae8841cf961ced344c to your computer and use it in GitHub Desktop.
Save grantpullen/ccd7bea81cf940ae8841cf961ced344c to your computer and use it in GitHub Desktop.
Fix IntelliJ Navigate back/forward navigation '<Control><Alt>Left' and '<Control><Alt>Right' in Gnome

Fix IntelliJ Navigate back/forward navigation <Control><Alt>Left and <Control><Alt>Right in Gnome

The following commands must be run in the user shell.

Inspect current binding

gsettings get org.gnome.desktop.wm.keybindings switch-to-workspace-left
gsettings get org.gnome.desktop.wm.keybindings switch-to-workspace-right

Remove key binding from gnome

gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-left "[]"
gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-right "[]"

restore key bindings

gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-left "['<Control><Alt>Left']"
gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-right "['<Control><Alt>Right']"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment