-
Notifications
You must be signed in to change notification settings - Fork 138
Description
Thanks for implementing this! Was wondering if it wouldn't be too much trouble to make cell delimiters single #%%s instead of requiring both top and bottom delimiters.
For example, percent scripts produced by jupytext currently skip alternate cells because the #%% at the bottom of a the i-th cell isn't interpreted as the beginning of the i+1-th cell.

I'm assuming this is because the current implementation replaces the rmarkdown ``` delimiter with #%%, so it expects both top and bottom fences.
Also, seems like the shortcut to run chunk doesn't work for R scripts fenced by #%%; it runs the entire script when i use Ctrl+Shift+Enter (run chunk shortcut on linux). Clicking on Run Chunk, however, produces the desired behaviour (i.e. it runs just the current cell).
Originally posted by @apoorvalal in #662 (comment)