What is the keyboard shortcut in SublimeText3 to manually enter a line break without executing the command option? In Rstudio I use Shift+Enter. In Excel I use Alt+Enter
I know Enter yields a newline but I don't want that. I want to continue wrapping on the current line - WITH - a line break.
I looked through the key bindings and there isn't one. If you have a macro that will do it, you can bind a hotkey to run that macro like this:
{ "keys": ["shift+enter"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Add Line.sublime-macro"} }
Just go to Sublime Text -> Preferences -> Key Bindings and add your new one.