Finally got around to giving it a shot. After a bit of searching it worked!
The config file was located in
~/.config/sublime-text-3/Packages/IJulia/Default (Linux).sublime-keymap.
This is the original snippet.
{ "keys": ["shift+enter"], "command": "i_julia_enter", "args": {},
"context":
[
{ "key": "setting.julia", "operator": "equal", "operand": true
},
{ "key": "auto_complete_visible", "operator": "equal", "operand"
: false }
]
},
{ "keys": ["enter"], "command": "i_julia_shift_enter", "args": {},
"context":
[
{ "key": "setting.julia", "operator": "equal", "operand": true
},
{ "key": "auto_complete_visible", "operator": "equal", "operand"
: false }
]
},
This is the final.
{ "keys": ["enter"], "command": "i_julia_enter", "args": {},
"context":
[
{ "key": "setting.julia", "operator": "equal", "operand": true
},
{ "key": "auto_complete_visible", "operator": "equal", "operand"
: false }
]
},
I changed "shift+enter" to just "enter" as you said and then removed the
original "shift+enter" chunk. This combination fully swapped the default
shift+enter and enter combinations.
*enter* now executes.
*shift + enter* now just adds a new line
Thanks!