Just press Shift+SPACE once and fly without holding down LMB. Or bind this function to middle mouse button for easier switching. Shooting works with just SPACE or still LMB+RMB together.
I have bound QASF to strafe up/down/left right, E=full forward, D=full back, W=boost, R=same speed as target, C=travel mode.
Controls like a charm. full forward and stuff works because if you let go of the key, game does 0% thrust again, so you can control it nicely digitally like keys are destined for.
F1-4 to inventory missions etc
If you really want to go all out on mappings - you have a PC game, the sky is the limit. Use Autohotkey to map stuff the game has hardbound. Or fire up C:\Users\<yourname>\Documents\Egosoft\X4\inputmap.xml in an editor.
This for example is keyboard scrolling on the map
<state id="INPUT_STATE_MAP_PAN_LEFT" source="INPUT_SOURCE_KEYBOARD" code="INPUT_KEYCODE_A"/>
<state id="INPUT_STATE_MAP_PAN_RIGHT" source="INPUT_SOURCE_KEYBOARD" code="INPUT_KEYCODE_D"/>
<state id="INPUT_STATE_MAP_PAN_UP" source="INPUT_SOURCE_KEYBOARD" code="INPUT_KEYCODE_W"/>
<state id="INPUT_STATE_MAP_PAN_DOWN" source="INPUT_SOURCE_KEYBOARD" code="INPUT_KEYCODE_S"/>
change _A, _D, _W, _S for example to _S, _F, _E, _D
Post edited December 06, 2018 by AlienMind