1. 13 6月, 2020 1 次提交
    • C
      notebooks: add ID for rich outputs, expose to renderer and webview · 1d1b452f
      Connor Peet 提交于
      Some API changes:
      
       - I changed the second param of NotebookOutputRenderer.render to a
         `NotebookRenderRequest` since we were up to four parameters already.
       - The request contains a unique `outputId`, which is generated when
         output is first created or restored (the ID is not stable if a
      	 notebook is closed and reopened)
       - I changed the renderer events to `onDidCreateOutput` and
         `onWillDestroyOutput` since they're for outputs, not cells.
       - Additionally, they're called with objects that contain the output
         ID to render.
      1d1b452f
  2. 12 6月, 2020 6 次提交
  3. 11 6月, 2020 2 次提交
  4. 10 6月, 2020 1 次提交
  5. 09 6月, 2020 5 次提交
  6. 05 6月, 2020 2 次提交
  7. 04 6月, 2020 2 次提交
  8. 03 6月, 2020 1 次提交
  9. 02 6月, 2020 1 次提交
  10. 01 6月, 2020 1 次提交
  11. 30 5月, 2020 2 次提交
  12. 28 5月, 2020 1 次提交
  13. 27 5月, 2020 3 次提交
  14. 26 5月, 2020 2 次提交
  15. 22 5月, 2020 2 次提交
  16. 21 5月, 2020 2 次提交
  17. 18 5月, 2020 1 次提交
  18. 16 5月, 2020 5 次提交
    • R
      Fix can't drop dragged cell above top cell · 31145728
      Rob Lourens 提交于
      31145728
    • R
      Fix cell DND issues · 12b44514
      Rob Lourens 提交于
      - Infinite loop in syncing focus/selection where the view cell index is not the same as the model cell index
      - Error thrown when dragging just above the top of the list
      12b44514
    • R
      Fix bad cell focus listener · c8c3c4e0
      Rob Lourens 提交于
      c8c3c4e0
    • M
      Add vscode-webview-resource protocol (#97777) · 307cb32f
      Matt Bierner 提交于
      * Add vscode-webview-resource protocol
      
      Adds a new protocol (`vscode-webview-resource`) for loading resources insides of webviews. This replaces the existing `vscode-resource` protocol and is registered on the main thread instead of in each renderer
      
      This change also adds some rewriting logic to update any `vscode-resource:` references found in the main html to use `vscode-webview-resource` instead.
      
      * Move webview protcol provider to own file
      
      * Remove registration of vscode-resource scheme
      
      * Remove use or parition for each webview
      
      Now that we have a single shared protocol handler, we do not need to run each webview in its own partition
      
      * Fix rewriting csp to use new protocol
      
      * Update src/vs/code/electron-main/app.ts
      Co-authored-by: NBenjamin Pasero <benjpas@microsoft.com>
      Co-authored-by: NBenjamin Pasero <benjpas@microsoft.com>
      307cb32f
    • R
      Fix cell context key service parenting · 95f4e177
      Rob Lourens 提交于
      Fixes some cell commands when a child of the cell row is selected
      95f4e177