Replies: 2 comments 2 replies
-
Yes, see quarto-dev/quarto-vscode#108. |
Beta Was this translation helpful? Give feedback.
2 replies
-
Here are my keyboard shortcuts: Although they're listed under quarto, you'll have to change them through VS Code.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Currently there are a few ways to execute commands inside VS Code Quarto extension:
Both
SHIFT + ENTER
andCTRL + ENTER
execute the current line the cursor is on, or the highlighted multiple lines of code.CTRL + SHIFT + ENTER
executes the entire cell.In RStudio, there is an option to execute multi-line statement without highlighting first:
Do we have similar functionality inside VS Code? This will make executing code much more convenient since we can skip highlighting the entire multiline code statement before running
CTRL+ENTER
The other approach is to have one statement per code cell, and use
CTRL + SHIFT + ENTER
to run a multiline code block, but that is still more inconvenient that RStudio's feature.Beta Was this translation helpful? Give feedback.
All reactions