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
Hi, jupyter or anaconda notebook supports snippets using nbextensions and follows a similar structure like vs code. However, this does not support a placeholder as of now. Can we feature engineer this?
Structure for jupyter:
{
"snippets" : [
{
"name" : "example",
"code" : [
"# This is an example snippet!",
"# To create your own, add a new snippet block to the",
"# snippets.json file in your jupyter nbextensions directory:",
"# /nbextensions/snippets/snippets.json",
"# `jupyter --data-dir` prints the working directory",
"import this"
]
},
{
"name" : "new-example",
"code" : [
"# This is a new example snippet!",
"import new"
]
}
]
}
The text was updated successfully, but these errors were encountered:
Hi,
jupyter
or anaconda notebook supports snippets using nbextensions and follows a similar structure likevs code
. However, this does not support a placeholder as of now. Can we feature engineer this?Structure for jupyter:
The text was updated successfully, but these errors were encountered: