apommel / vscode-matlab-interactive-terminal

VS Code extension allowing for an interactive Matlab terminal and launching of scripts through Matlab Engine for Python
MIT License
46 stars 10 forks source link

Useful key bindings to implement when editing MATLAB files #52

Open leele2 opened 2 years ago

leele2 commented 2 years ago

I have found the following entry in the keybindings.json to be useful. Wondering if it would be beneficial to implement into the extension, similarly to what I have seen within an R adaption to VS code.

[
    {
        "key": "ctrl+enter",
        "command": "matlab-interactive-terminal.runMatlabSelection",
        "when": "editorTextFocus && editorLangId == 'matlab'"
    }
]

Sorry if this is the wrong section for a recommendation, I'm new to GitHub!