Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ubuntu 18.04 conflict with Intellij back/forward navigation

Intellij Navigate Back Forward conflicts in the last ubuntu version 18.04. The problem is that when I wan't to assign a new value to Navigate to workspace Left or right, I don't find them in shortcut panel.

Any solution to this ?

like image 562
Radouane ROUFID Avatar asked Jun 06 '18 09:06

Radouane ROUFID


People also ask

How do I navigate forward and backward in IntelliJ?

To navigate backwards, press Ctrl+Alt+Left . To navigate forward, press Ctrl+Alt+Right . To navigate to the last edited location, press Ctrl+Shift+Backspace .

How do I go back to previous method in IntelliJ?

Use ⌘[ (macOS), Ctrl+Alt+Left Arrow (Windows/Linux) to navigate backwards and ⌘] (macOS), Ctrl+Alt+Right Arrow (Windows/Linux), to navigate forwards.

How do I navigate to methods in IntelliJ?

Find Usages We can use use ⌥F7 on macOS, or Alt+F7 on Windows and Linux to find the usages for our isEmployed method. We can see that there are two usages including the one we're currently investigating. If we select the other usage, IntelliJ IDEA will take us to the location within the class.

How do I jump to a line in IntelliJ?

In Intellij you are in an editor, so the keyboard shortcuts are slightly different: Ctrl+Shift+{NUM} for grouping and Ctrl+{NUM} for a jump and focus to the line.


2 Answers

I share with you the solution I found. In a new terminal do :

gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-left "['']"
gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-right "['']"
like image 101
Radouane ROUFID Avatar answered Oct 21 '22 05:10

Radouane ROUFID


Actually, I find that newer IDEA on Ubuntu 18.04 using 'Default for GNOME' as default key map settings, which means shift + alt + left / right arrow are default values instead of previous ctrl + alt + left / right arrow.

like image 40
Joe Avatar answered Oct 21 '22 05:10

Joe