Ubuntu18.04 IDEA快捷键无法使用

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

IDEA默认的回退到上一视图的快捷键是Ctrl + Alt + Left,在ubuntu中这个快捷键被占用了,在16.04中可以在界面中取消这个快捷键,但是18.04就看不到了,可以使用以下命令解决

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

若要恢复,执行

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

 

转载于:https://my.oschina.net/icebergxty/blog/1835319

你可能感兴趣的:(Ubuntu18.04 IDEA快捷键无法使用)