Until recently I was able to use keymaps such as Ctrl
+Right
to move the caret to the next word in my Bash Terminals embedded in GoLand on Ubuntu 18.04. I'm not sure what has changed but these no longer work. Now if I try to use the example shortcut it just types C
. What settings do I need to change to get this to work? I have tried this with both "Tools>Terminal>Override IDE shortcuts" checked and unchecked.
Turns out this was not an IDE issue. Whilst trying to add support for using Ctrl
+ Backspace
for deleting words, I had created a ~/.inputrc
file which was overriding my /etc/inputrc
file. Deleting this file fixed the problem.