Cell disabling at notebook startup #1205
-
Currently, the cell disabling #985 is only in the current Pluto session, but not persistent in the notebook.jl file. Especially, when opening a notebook all cells are active, which may lead to long execution times. It should be possible in Pluto to mark cells which should be disabled when starting the notebook. This information is then stored in the notebook file. Backend:
Frontend:
Happy to discuss! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
Persistent disabling would be great indeed.
Just to fuel the discussion, I'd prefer the opposite. Technically, disabled cell code could be wrapped in a multi-line comment, as # ╔═╡ 45fab7a0-9076-11eb-284b-9b712e6f3d46
#=╠═ Cell manually disabled in Pluto (or "Cell disabled by Pluto because it depends on a disabled cell")
...
=# The documentation says multi-line comments are nestable, |
Beta Was this translation helpful? Give feedback.
Persistent disabling would be great indeed.
Just to fuel the discussion, I'd prefer the opposite.
Disabled cells can become obsolete, as they are not executed by Pluto.
So to me they are in the limbo, and should not be executed in the repl.
(Only cells that actually run in Pluto would be run when the file is included in the repl).
Technically, disabled cell code could be wrapped in a multi-line comment, as