https://github.com/disberd/vscode-pluto-operations
Perform basic notebook operations on pluto notebook files from vscode
Science Score: 13.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (7.1%) to scientific vocabulary
Repository
Perform basic notebook operations on pluto notebook files from vscode
Basic Info
- Host: GitHub
- Owner: disberd
- License: unlicense
- Language: TypeScript
- Default Branch: main
- Size: 105 KB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Metadata Files
README.md
Pluto Operations
This is an extension to perform basic cell operations in Pluto notebook files. This can be useful when one wants to modify a notebook without a Pluto server running or even to perform basic operations directly on the file and exploit the auto-reload from file feature of Pluto.
Features
All the commands operate either on or based on the cell where the cursor is currently active. The active cell is parsed both when the crusor is inside the cell code as well as when it is on the list of Cell orders at the bottom of the notebook. The following commands/functionalities are currently supported:
Add a cell
The commands Pluto: Add a Cell After and Pluto: Add a Cell Before create a new empty cell and position it either after or before the currently active cell:

Delete a cell
The command Pluto: Delete Cell deletes the currently active cell from the notebook:

Toggle Cell Code Hidden Status
The commands Pluto: Hide Cell Code, Pluto: Show Cell Code and Pluto: Toggle Cell Code Hidden can be used to change the hidden status of the active cell code.
This functionality does not currently work with auto-reload from file in Pluto (see https://github.com/fonsp/Pluto.jl/issues/2424)
Move between Cell Code and Cell Order
The command Pluto: Go To Cell Code/Order moves both the cursor and the editor view between the code and the cell order for the currently active cell. - When the command is invoked from the cell code, the cursor moves to the line of the active cells in the Cell Order section at the bottom of the notebook. - When the command is invoked from the Cell Order section at the bottom of the notebook, the cursor and editor view is moved to the active cell code definition.
Release Notes
0.1.0
Initial release