Make keyboard shortcuts configurable

Hi @Andre.Levy Are you on Windows? If so, a simple Auto Hotkey script can help. I just made this script which transforms CTRL+J into back arrow, and CTRL+L into forward arrow. Also press CTRL+Q to suspend the script and CTRL+W to exit the script. You can customise these shortcut easily if you have a basic knowledge of AHK. Let me know if you need any further help with setting it up.

 SetKeyDelay, 200			   ; ^ =ctrl  +=shift  !=alt
 SetNumLockState , on
 ^q::suspend
 ^w::exitapp

 ^j::
 send, {left}
 return

 ^l::
 send, {right}
 return