jopeter

Results 5 comments of jopeter

Try this " \n" (space important) ``` { "key": "shift+enter", "command": "workbench.action.terminal.sendSequence", "args": { "text": " \n" }, "when": "terminalFocus" } ``` terminal apps often ignore or misinterpret a bare...

1. Enable Keybinding Debug Logging Ctrl+Shift+P --> Developer: Toggle Keyboard Shortcuts Troubleshooting This will open Output tab.. 2. Make sure 'Window' (or in some versions: 'Keybinding Troubleshooting') is selected in...

Thanks, very useful Try broader --> ``` { "key": "shift+enter", "command": "workbench.action.terminal.sendSequence", "args": { "text": " \n" }, "when": "terminalProcessSupported" } ``` However, consider switching 'editor-area terminal' to terminal Since...

> > Thanks, very useful > > Try broader --> > > ``` > > { > > "key": "shift+enter", > > "command": "workbench.action.terminal.sendSequence", > > "args": { "text": "...

> Well, I've just discovered that pressing Alt+Enter does work. Not ideal as I'm not used to it, but okay. At least something, i have a similar setup and shift+enter...