Giter Club home page Giter Club logo

vscode-github-issue-notebooks's Introduction

GitHub Issue Notebooks

The VS Code GitHub Issue notebook extension enables you to run issue queries from within VS Code so that queries and results are displayed interleaved - just like in other notebook applications.

Getting Started

  1. go to https://vscode.dev or use VS Code Desktop
  2. install this extension from the market place: https://marketplace.visualstudio.com/items?itemName=ms-vscode.vscode-github-issue-notebooks
  3. select "File > New File... > GitHub Issue Notebook"

Sample

Features

The following features are currently supported

  • Querying and rendering of GH issues and PR queries
  • Language Support
    • syntax highlighting
    • validation
    • completions
    • code navigation (find references, to go definition)
    • rename
    • formatting

Query Syntax

This extension supports to search for issues and pull requests using GitHub search queries (https://help.github.com/en/github/searching-for-information-on-github/searching-issues-and-pull-requests). In addition, variables can be defined and OR-queries can be used. Approximation of the grammer:

doc ::= query | or | def
query ::= <GH_QUERY>
or ::= query "OR" query | or
def ::= var "=" query
var ::= "$" [_a-zA-Z] [_a-zA-Z0-9]*

Note that new line characters always terminate an expression.

Samples

A few sample queries from the vscode-project, paste each into a separate code cell

Define variables for vscode and the current milestone (May 2020):

$vscode=repo:microsoft/vscode 
$milestone=milestone:"May 2020"

All current bugs I have created that are closed but not yet verified (using above variables):

$vscode $milestone is:closed author:@me -assignee:@me label:bug -label:verified

All issues that affect performance (startup, freezing, leakage):

$vscode assignee:@me is:open label:freeze-slow-crash-leak
$vscode assignee:@me is:open label:perf
$vscode assignee:@me is:open label:perf-startup

vscode-github-issue-notebooks's People

Contributors

ashikpaul avatar babakks avatar burkeholland avatar connor4312 avatar dependabot[bot] avatar joyceerhl avatar jrieken avatar lszomoru avatar microsoft-github-operations[bot] avatar microsoftopensource avatar mjbvz avatar notwearingpants avatar rebornix avatar roblourens avatar rzhao271 avatar sandy081 avatar tylerleonhardt avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

vscode-github-issue-notebooks's Issues

Better way to express repos

Usually repositories are static throughout a notebook. Today, each query must include the repo-statement and that's often cumbersome. It would be nice to somehow scope a notebook to one or more repos which are then implicit to each and every query

Locked cells and undo/redo

Issue Type: Bug

Testing microsoft/vscode#98991

  1. Create github-issues notebook with two cells
  2. Type in a cell, then lock it

Try to undo, nothing happens. So my expectation is then that locked cells will not respond to undo.

  1. Type in the other cell
  2. Repeatedly undo

I'm able to remove the text from the locked cell.

VS Code version: Code - Insiders 1.46.0-insider (1bfa086adb9271ff56be11821da686e4cfffb672, 2020-06-02T08:10:00.819Z)
OS version: Darwin x64 18.7.0

GitHub Issues Notebook: stale queriy results are not useful

I've started to create github issues notebooks in one of my GitHub projects. A Notebook can help the community to see what the project is tracking. However, seeing stale query results is not helpful. It is not realistic that the notebook owner runs the queries manually regularly, saves the notebook, and checks it in again,

Therefore the query results should not be saved with the notebook, the queries should be run when the notebook is opened.

"Unknown label" when repo is in variable

Have one cell with $REPOS=repo:microsoft/vscode, and another with $REPOS label:notebook. The second cell gets a warning on the label that it's unknown, although I get the correct labels in intellisense.

Syntax error: hyphen in quotes

Issue Type: Bug

label:"author-verified"

image

Extension version: 0.0.4
VS Code version: Code - Insiders 1.44.0-insider (d8e3cca049b1baa317ab9ef0d3f673b08e53d8fa, 2020-04-02T06:40:18.155Z)
OS version: Darwin x64 19.2.0

System Info
Item Value
CPUs Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz (16 x 2400)
GPU Status 2d_canvas: enabled
flash_3d: enabled
flash_stage3d: enabled
flash_stage3d_baseline: enabled
gpu_compositing: enabled
metal: disabled_off
multiple_raster_threads: enabled_on
oop_rasterization: disabled_off
protected_video_decode: unavailable_off
rasterization: enabled
skia_renderer: disabled_off_ok
video_decode: enabled
viz_display_compositor: enabled_on
viz_hit_test_surface_layer: disabled_off_ok
webgl: enabled
webgl2: enabled
Load (avg) 2, 2, 2
Memory (System) 32.00GB (1.03GB free)
Process Argv -psn_0_7681875
Screen Reader no
VM 0%

Support for Jira

For some of my projects I would like to be able to query jira and github issues on the same notebook. Would you be open to adding a new "language mode" for Jira?

Add validation for `label:X`

Testing microsoft/vscode#93742

  • It looks like labels are fetched when doing intellisense after a label:
  • It would be nice if typos of labels would get an error or a warning:
  • repo:microsoft/vscode label:bug2 assignee:alexdima is:open

Provide a way to display reactions

It would be great if there was a way to show reactions for an issue. Specifically, we would like to know what the top voted issues along with their vote count.

Save queries as formatted json

Any reason not to do this? It's nice to have readable JSON like for diffs until we have some notebook SCM. Just JSON.stringify(obj, undefined, 2)

"Showing" label should reflect current number of rendered results

Issue Type: Bug

testing microsoft/vscode#96279

  1. Create GitHub issue notebook
  2. Execute a code cell with repo:microsoft/vscode

Screen Shot 2020-04-28 at 4 54 13 PM

The text at the bottom of the output below show more reads "947420 results (showing 1000)". Since it's right by the show more button, I expected this to be indicating how many results were currently rendered

VS Code version: Code - Insiders 1.45.0-insider (abb4a35cfc26102f93fd00df7b59ce1a19c2017a, 2020-04-28T05:34:21.109Z)
OS version: Darwin x64 18.7.0

Cannot query private notebooks

image

The resulting query
https://api.github.com/search/issues?q=repo%3Amicrosoft%2Fvscode-github-issue-notebooks%20author%3Akieferrm&sort=undefined&order=desc&per_page=100&page=0 looks ok though.

Allow OR syntax on variables

Example, suppose I have these variables:

$cudf=repo:rapidsai/cudf
$cuio_issues = is:issue is:open label:cuIO
$libcudf_issues = is:issue is:open label:libcudf -label:cuIO

It would be nice if this worked (it doesn't appear to):

$cudf $cuio_issues OR $cudf $libcudf_issues

Instead I have to write it all out (this works):

$cudf is:issue is:open label:cuIO OR $cudf is:issue is:open label:libcudf -label:cuIO

It would also be nice if this worked:

$query1 = $cudf $cudf_issues
$query2 = $cudf $cuio_issues
$query1 OR $query2

Can't assign `sort:reactions-+1-desc` to a variable

For $upvote_sort=sort:reactions-+1-desc I get an error of query expected:

{
	"resource": "...",
	"owner": "_generated_diagnostic_collection_name_#9",
	"code": "NodeMissing",
	"severity": 8,
	"message": "query expected",
	"startLineNumber": 4,
	"startColumn": 1,
	"endLineNumber": 4,
	"endColumn": 36
}

GH notebooks: "start working" frantic UI

Currently we render the "start working" after the labels.
This gives a bit of a frantic feeling when I hover over multiple rows, since it is always in a different place. I usually quite dislike this UI, and prefer when the location is stable, since this gives a more calming effect.
Thus I suggest we allign the "start working" to the right. Left of the assignee

Bonus issue: if I do not give permission to the GH PR extension, additional clicks on it have no effect. It should always prompt me to give permision.

Screenshot 2020-06-10 at 22 21 41

Folded variable triggers errors

I have a code cell that houses all of the variable at the top that is folded:

image

The moment I unfold the variable cell the error goes away:

image

Not sure if this is related to this notebook or in the core. cc @rebornix

Empty notebook results in dead end experience

image

When creating a new GitHub Issues notebook, there is no cell added nor do any of the "Insert" cell commands work. This results in a dead end and a pretty bad experience.

The notebook sample extension at least always has a cell visible and doesn't let you delete it:

image

Below is the console log I see in dev tools:

 ERR Cannot read property 'handle' of undefined: TypeError: Cannot read property 'handle' of undefined
    at NotebookCellList.splice2 (file:///Users/misolori/Projects/vscode/out/vs/workbench/contrib/notebook/browser/view/notebookCellList.js:272:86)
    at NotebookCellList.attachViewModel (file:///Users/misolori/Projects/vscode/out/vs/workbench/contrib/notebook/browser/view/notebookCellList.js:178:22)
    at NotebookEditorWidget.attachModel (file:///Users/misolori/Projects/vscode/out/vs/workbench/contrib/notebook/browser/notebookEditorWidget.js:362:27)
    at processTicksAndRejections (internal/process/task_queues.js:85:5)
    at async NotebookEditorWidget.setModel (file:///Users/misolori/Projects/vscode/out/vs/workbench/contrib/notebook/browser/notebookEditorWidget.js:252:21)

Query results are always results of last execution

Issue Type: Bug

  • Make changes to a query in GitHub issue notebook
  • Execute the query
  • Get results of old query

I think this is because the document content change event doesn't always arrive at the extension host before notebook execution. However this is something we should guarantee.

VS Code version: Code - Insiders 1.44.0-insider (d8e3cca049b1baa317ab9ef0d3f673b08e53d8fa, 2020-04-02T06:40:18.155Z)
OS version: Darwin x64 19.2.0

System Info
Item Value
CPUs Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz (16 x 2400)
GPU Status 2d_canvas: enabled
flash_3d: enabled
flash_stage3d: enabled
flash_stage3d_baseline: enabled
gpu_compositing: enabled
metal: disabled_off
multiple_raster_threads: enabled_on
oop_rasterization: disabled_off
protected_video_decode: unavailable_off
rasterization: enabled
skia_renderer: disabled_off_ok
video_decode: enabled
viz_display_compositor: enabled_on
viz_hit_test_surface_layer: disabled_off_ok
webgl: enabled
webgl2: enabled
Load (avg) 2, 2, 2
Memory (System) 32.00GB (0.88GB free)
Process Argv -psn_0_7681875
Screen Reader no
VM 0%
Extensions (16)
Extension Author (truncated) Version
comment-tagged-templates bie 0.3.0
github-markdown-preview bie 0.0.2
markdown-emoji bie 0.0.9
markdown-preview-github-styles bie 0.1.6
gitlens eam 10.2.1
vscode-pull-request-github-insiders Git 2020.4.2341
vscode-language-pack-zh-hans MS- 1.44.1
remote-ssh-edit-nightly ms- 2020.3.44100
remote-ssh-nightly ms- 2020.3.44100
js-debug-nightly ms- 2020.3.1617
vscode-github-issue-notebooks ms- 0.0.4
vsliveshare ms- 1.0.1891
debugger-for-chrome msj 4.12.6
kuskus-extensions-pack ros 1.0.1
kuskus-kusto-language-server ros 1.0.1
kuskus-kusto-syntax-highlighting ros 1.1.8

(4 theme extensions excluded)

Show Error/Warning when the query is invalid

Issue Type: Bug

Below query gives me correct results

$VERIFICATION -assignee:@me sort asc by created

but this one return zero results but shows no error/warning

$VERIFICATION sort asc by created -assignee:@me

Extension version: 0.0.18
VS Code version: Code - Insiders 1.45.0-insider (a0fe37870c42e0704a492cdc6b8550b4cf23f63c, 2020-04-30T05:36:26.465Z)
OS version: Darwin x64 19.2.0

System Info
Item Value
CPUs Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz (16 x 2400)
GPU Status 2d_canvas: enabled
flash_3d: enabled
flash_stage3d: enabled
flash_stage3d_baseline: enabled
gpu_compositing: enabled
metal: disabled_off
multiple_raster_threads: enabled_on
oop_rasterization: disabled_off
protected_video_decode: unavailable_off
rasterization: enabled
skia_renderer: disabled_off_ok
video_decode: enabled
viz_display_compositor: enabled_on
viz_hit_test_surface_layer: disabled_off_ok
webgl: enabled
webgl2: enabled
Load (avg) 2, 2, 2
Memory (System) 32.00GB (0.42GB free)
Process Argv -psn_0_28097226
Screen Reader no
VM 0%

Milestone filters incorrectly

Issue Type: Bug

repo:microsoft/vscode label:notebook is:open -milestone:"April 2020" -milestone:"Backlog" doesn't filter out issues assigned to Backlog milestone.

Extension version: 0.0.3
VS Code version: Code - Insiders 1.44.0-insider (20b88fa0694cae8e46ffd305a1450ba58ae6065b, 2020-04-01T08:34:11.087Z)
OS version: Darwin x64 19.2.0

System Info
Item Value
CPUs Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz (16 x 2400)
GPU Status 2d_canvas: enabled
flash_3d: enabled
flash_stage3d: enabled
flash_stage3d_baseline: enabled
gpu_compositing: enabled
metal: disabled_off
multiple_raster_threads: enabled_on
oop_rasterization: disabled_off
protected_video_decode: unavailable_off
rasterization: enabled
skia_renderer: disabled_off_ok
video_decode: enabled
viz_display_compositor: enabled_on
viz_hit_test_surface_layer: disabled_off_ok
webgl: enabled
webgl2: enabled
Load (avg) 2, 2, 2
Memory (System) 32.00GB (0.81GB free)
Process Argv -psn_0_4691065
Screen Reader no
VM 0%

Support proper sort syntax

Turns out GH has proper syntax for sorting, e.g sort:foo-asc and that should replace the custom syntax

multiple -assiginee should be allowed

Issue Type: Bug

$REDMOND= -assignee:alexdima -assignee:weinand -assignee:alexr00 -assignee:egamma -assignee:aeschli -assignee:isidorn -assignee:chrmarti -assignee:dbaeumer -assignee:bpasero -assignee:sandy081 -assignee:jrieken

I'm seeing warnings for -assignee, however it's valid as I'm using - here.

Extension version: 0.0.10
VS Code version: Code - Insiders 1.45.0-insider (2225d77536d12fea2eda04930f431a5eb0930bba, 2020-04-09T09:26:30.083Z)
OS version: Darwin x64 19.2.0

System Info
Item Value
CPUs Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz (16 x 2400)
GPU Status 2d_canvas: enabled
flash_3d: enabled
flash_stage3d: enabled
flash_stage3d_baseline: enabled
gpu_compositing: enabled
metal: disabled_off
multiple_raster_threads: enabled_on
oop_rasterization: disabled_off
protected_video_decode: unavailable_off
rasterization: enabled
skia_renderer: disabled_off_ok
video_decode: enabled
viz_display_compositor: enabled_on
viz_hit_test_surface_layer: disabled_off_ok
webgl: enabled
webgl2: enabled
Load (avg) 2, 2, 2
Memory (System) 32.00GB (1.29GB free)
Process Argv -psn_0_21345370
Screen Reader no
VM 0%

Webpack extension

This extension quite large and consists of many, many files. Webpack should help here

Feature Request: merge queries

It would be nice to search multiple repos at once like:

$my_repos=[repo:foo, repo:bar, ...]
$my_repos is:issue is:open assignee:@me 

LS does not "see" cells that have never materialized

Issue Type: Bug

  1. create a cell that defines a variable and fold it away
  2. create one or more markdown cells so that they are higher than your window size
  3. below that create a cell tha uses the variable
  4. scroll the editor to the top
  5. open the problems view
  6. close the file/editor
  7. reopen the file -> problem view is empty
  8. scroll to the bottom of the notebook -> problems view shows the error

Although these steps use the bug described in #27 to reproduce the problem, the problem is real :-)

Extension version: 0.0.22
VS Code version: Code - Insiders 1.46.0-insider (e88b8d32aa7233f6cb3665f6dae9fa78b1e8aafb, 2020-05-13T08:04:25.590Z)
OS version: Darwin x64 18.7.0

LS does not "see" cells that are folded

Issue Type: Bug

  1. create a cell that defines a variable and fold it away
  2. use the variable in another cell
  3. close the file/editor
  4. reopen the file
    -> cell created in step 2 shows error squiggles

Extension version: 0.0.22
VS Code version: Code - Insiders 1.46.0-insider (e88b8d32aa7233f6cb3665f6dae9fa78b1e8aafb, 2020-05-13T08:04:25.590Z)
OS version: Darwin x64 18.7.0

misleading milestone syntax error

Issue Type: Bug

Sometimes I get syntax error for milestones but not 100% of the time.

repo:microsoft/vscode label:notebook is:open milestone:"April 2020"

image

Extension version: 0.0.4
VS Code version: Code - Insiders 1.44.0-insider (d8e3cca049b1baa317ab9ef0d3f673b08e53d8fa, 2020-04-02T06:40:18.155Z)
OS version: Darwin x64 19.2.0

System Info
Item Value
CPUs Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz (16 x 2400)
GPU Status 2d_canvas: enabled
flash_3d: enabled
flash_stage3d: enabled
flash_stage3d_baseline: enabled
gpu_compositing: enabled
metal: disabled_off
multiple_raster_threads: enabled_on
oop_rasterization: disabled_off
protected_video_decode: unavailable_off
rasterization: enabled
skia_renderer: disabled_off_ok
video_decode: enabled
viz_display_compositor: enabled_on
viz_hit_test_surface_layer: disabled_off_ok
webgl: enabled
webgl2: enabled
Load (avg) 2, 2, 2
Memory (System) 32.00GB (2.28GB free)
Process Argv
Screen Reader no
VM 0%

Formatting github issues notebook leaves extra space

Issue Type: Bug

microsoft/vscode#96279

  1. Create GitHub issues notebooke
  2. Write a query where there is a bunch of space between the field and the value, like repo: microsoft/vscode
  3. Run Format Document on the cell or Notebook: Format Notebook

A single space is left instead of all space being removed:
formatting

VS Code version: Code - Insiders 1.45.0-insider (abb4a35cfc26102f93fd00df7b59ce1a19c2017a, 2020-04-28T05:34:21.109Z)
OS version: Darwin x64 18.7.0

Repo IntelliSense weirdness

First, I noticed that when I type "repo" and hit enter on intellisense, the suggestions doesn't come up because there is no : so i have to manually add it. it then takes a few seconds for the suggestions to come up, but as I type to filter the list it's not update properly and at some point it goes away after I am done and comes back seconds later. Lots of weirdness, not sure if this is related to recent SSO sign on for GH.

Kapture 2020-06-04 at 10 09 08

Support Python in the notebook

Great potential in this extension. I'd love to be able to use it to build an interactive dashboard notebook. To that end, being able to use Python (or other language) in cells to manipulate query results would be amazing. If I could get the results of a query in an array and use that to generate statistics so I can feed them into visualizations, for instance. Even getting the size of the array would be useful. Then I could track changes in the number of issues open under a certain label over time, etc.

Better documentation would be nice, too. Right now it's unclear what is the difference between queries with "or", "and", and without either (e.g. between labels).

Thanks!

Have a way to control the number of issues shown above the fold

While it's great that the output is naturally truncated, being able to restrict more would be handy. For instance, when looking at the move upvoted issues in a repo, it would be great to just cap it at say 5 and have the rest be under Show ... more. This could also allow for queries where making sure you view all issues no matter how many possible by setting a high enough number to show.

GH Issues Notebook: Backlog

Functionality

  • code cells support the GH query syntax
  • support macros
    • definition: $BUG= "label:bug"
    • usage: repo:microsoft/vscode is:issue ${BUG} notebook
  • support for OR such as (label:bug OR label:important)
  • Language features
    • ๐Ÿƒ intellisense: keywords; macros, potentially repos, labels, users, milestones
    • syntax check
    • semantic check such as !label:bug label:bug and undefined macros
    • go to definition and find all references for macros
    • rename for macros
    • outline for full notebook
  • results
    • text: only list of issue urls
    • json
    • list of issues (like GH)
  • extensions
    • copy result list
    • sort results in various ways
    • define list of repos and have a drop down that lets you switch the default repo
    • mark cells as locked/unlocked (like macOS System Preferences)
  • we can grow this over time to allow cells to contain graph QL queries to be polyglot

Goals for March

  • create new notebook: if the NB is empty, provide an empty cell, allow to change cell type/language id
  • add cell
  • delete cell
  • reorder cells (using commands and UI)
  • language features
    • syntax highighting
    • semantic highlights
    • syntax check
    • keyword intellisense
    • simple macro support
    • Go to definition of macros
    • Find all references of macros
    • Rename of macros
    • Completions
    • Structured Selection
  • Run query
  • Render output (low bar: title, owner, milestone)
  • Clear output
  • Save notebook
  • โœ‹ Cross cell undo/redo
  • notebook meta-data
    • readonly: whether or not cells can not be deleted or added
    • cell-readonly: default for whether or not cells are read-only
  • cell meta-data
    • readonly: cell can be modified
    • runnable: has a run button
  • progress / cancellation
    • elapsed time

April

  • Stabilization: performance, grammar, LS
  • Adopt progress being made on notebooks in general (see microsoft/vscode#91987)
  • Outline
  • Provide global indication of not signed in and an action to trigger sign-in (not in the window status bar)
  • ๐Ÿ’ช Extension: define list of repos and have a drop down that lets you switch the default repo
  • ๐Ÿ’ช support basic graph QL code-cell (and execution)

"Start working..." shows in the wrong repo

Issue Type: Bug

Currently "Start working..." always shows even if the repo is different from the one on the workspace.

Extension version: 0.0.10
VS Code version: Code - Insiders 1.45.0-insider (b83339a3a7bd8e3ec8a8b79deda9c37e0d91f094, 2020-04-21T05:38:43.781Z)
OS version: Darwin x64 19.2.0

System Info
Item Value
CPUs Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz (16 x 2400)
GPU Status 2d_canvas: enabled
flash_3d: enabled
flash_stage3d: enabled
flash_stage3d_baseline: enabled
gpu_compositing: enabled
metal: disabled_off
multiple_raster_threads: enabled_on
oop_rasterization: disabled_off
protected_video_decode: unavailable_off
rasterization: enabled
skia_renderer: disabled_off_ok
video_decode: enabled
viz_display_compositor: enabled_on
viz_hit_test_surface_layer: disabled_off_ok
webgl: enabled
webgl2: enabled
Load (avg) 2, 2, 2
Memory (System) 32.00GB (0.62GB free)
Process Argv -psn_0_13003878
Screen Reader no
VM 0%

Mark cells without query as not runnable

A cell that only defines variables shouldn't be runnable, sample

// define repo and current milestone
$repo=repo:microsoft/vscode
$current=milestone:"April 2020"

Github Notebook: issue icon based on themes

Issue Type: Bug

Currently the issue icon is dark in dark theme.

image

VS Code version: Code - OSS Dev 1.44.0 (Commit unknown, Date unknown)
OS version: Darwin x64 19.2.0

System Info
Item Value
CPUs Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz (16 x 2400)
GPU Status 2d_canvas: enabled
flash_3d: enabled
flash_stage3d: enabled
flash_stage3d_baseline: enabled
gpu_compositing: enabled
metal: disabled_off
multiple_raster_threads: enabled_on
oop_rasterization: disabled_off
protected_video_decode: unavailable_off
rasterization: enabled
skia_renderer: disabled_off_ok
video_decode: enabled
viz_display_compositor: enabled_on
viz_hit_test_surface_layer: disabled_off_ok
webgl: enabled
webgl2: enabled
Load (avg) 2, 3, 3
Memory (System) 32.00GB (2.60GB free)
Process Argv . --no-sandbox --extensions-dir /Users/penlv/code/work/notebook-extension-samples
Screen Reader no
VM 0%
Extensions (3)
Extension Author (truncated) Version
notebook-test vsc 1.0.0
notebook-regexper vsc 1.0.0
notebook-renderers vsc 1.0.0

Availability of this extension in production release

I have tried to search but, couldn't find definitive information on this:

Is this extension currently available in prod release of vscode?

It shows in the latest release note.

image

But then the extension says it only works in insider version:

image

If that's the case any I can do in prod release to make it work?

Thanks!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.