You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
C-c C-c is julia-repl-send-region-or-line which only sends the line by default. vscode-julia sends the whole block. Would it be possible to have that in emacs too?
The text was updated successfully, but these errors were encountered:
It behaves differently than VS Code, because the block must be delimited by empty lines and AFAIK VS Code automatically recognizes multi-line expressions without extra delimiters. But for me, it's sufficient most of the time.
That may be an improvement, thanks. As you note, sometimes paragraph is too small, e.g. if there are blank lines in the block, and sometimes too large, e.g. if there are multiple independent blocks without blank lines between them.
It looks like LanguageServer usesjulia/getCurrentBlockRange.
I want to execute a multiline code block:
C-c C-c
isjulia-repl-send-region-or-line
which only sends the line by default. vscode-julia sends the whole block. Would it be possible to have that in emacs too?The text was updated successfully, but these errors were encountered: