Commit graph

69683 commits

Author SHA1 Message Date
Rob OLeary 0bb98bf686
Add more snippets for basic syntax (#105174) 2020-08-21 11:07:24 -07:00
Rob Lourens 59b97e1900 Just "clear cell outputs", not "active cell outputs" 2020-08-21 10:50:36 -07:00
Rob Lourens 2c713dd105 "Clear cell output" should clear execution state
#103713
2020-08-21 10:49:32 -07:00
Rob Lourens 6d4ecda76c Fix cell output height messed up after editing gh cell 2020-08-21 10:43:29 -07:00
Rob Lourens 3cc3de4d68 Make fold indicator hit target larger 2020-08-21 10:12:57 -07:00
Connor Peet d4f6fe3227
notebooks: deprecate viewType for renderers, prefer renderer ID 2020-08-21 10:09:04 -07:00
Connor Peet 83bea8f0e4
tests: probably fix occasional test error on NamedPipeDebugAdapter
Refs: https://github.com/microsoft/vscode/issues/105136
2020-08-21 09:16:08 -07:00
Connor Peet d20e086afc
Merge branch 'connor4312/rm-old-renderer-api' 2020-08-21 09:12:08 -07:00
SteVen Batten 325e07f06c don't create promise when it can't be resolved 2020-08-21 08:33:26 -07:00
Johannes Rieken 90d2cac44d nb - test that cell removal cleans-up documents 2020-08-21 16:20:43 +02:00
Johannes Rieken 9ba9794e22 nb - viewColumn is readonly 2020-08-21 16:20:06 +02:00
Ladislau Szomoru 06730e3e29
Azure DevOps pipeline - generate unique test result names (#105148)
* Set suite name based on environment variable
2020-08-21 15:05:15 +02:00
Johannes Rieken 25ad7485b3 chore - remove unused, bad-layered util-function 2020-08-21 14:58:43 +02:00
Johannes Rieken e2efa92868 chore - TextEditor.viewColumn is readonly 2020-08-21 13:58:28 +02:00
Martin Aeschlimann fae07df7c3 onTypeRename: wordPattern (for #104823) 2020-08-21 13:54:43 +02:00
Johannes Rieken 0817b70ca9
Merge pull request #104994 from microsoft/joh/formatChanges
format modified
2020-08-21 13:28:32 +02:00
Johannes Rieken 6e4fe5fbb6 keep old setting as it and add dependent setting 2020-08-21 12:39:19 +02:00
Johannes Rieken a87dc68f41
Merge branch 'master' into joh/formatChanges 2020-08-21 12:19:15 +02:00
Johannes Rieken 3462e29ea0 strict notebook cell api,https://github.com/microsoft/vscode/issues/104606
Let a `vscode.NotebookCell` only be what's spec'd in the API not more. Make things froozen and readonly when possible
2020-08-21 12:08:51 +02:00
Christof Marti 3723dfa35c Use placeholder unless aria-label given (fixes #104664) 2020-08-21 11:31:17 +02:00
isidor 02cd863122 debug: display launch name when showing dynamic configurations
fixes #103471
2020-08-21 11:21:48 +02:00
isidor 364af775ec repl: add line numbers on hover of source elements
fixes #105007
2020-08-21 10:53:53 +02:00
Martin Aeschlimann 7c314b0623 [css] property suggestions not correctly ordered. Fixes #105039 2020-08-21 10:44:45 +02:00
Johannes Rieken 7b33afc932 💄 2020-08-21 10:10:30 +02:00
Sam Poder f805c84b1b
Fix spelling mistake in main.js (#104987)
Co-authored-by: Benjamin Pasero <benjpas@microsoft.com>
2020-08-21 10:07:00 +02:00
Johannes Rieken 0a7d9859ed tackle https://github.com/microsoft/vscode/issues/104606 2020-08-21 10:06:26 +02:00
Benjamin Pasero 67c90e6930 fuzzy scorer - bring back prefix match boost (fix #103052) 2020-08-21 09:29:34 +02:00
Benjamin Pasero 38f8b223ff web - remoteIndicator => windowIndicator 2020-08-21 08:43:11 +02:00
Benjamin Pasero d50e84208f web - ignore builtIn extension if overridden via CLI 2020-08-21 08:15:37 +02:00
Benjamin Pasero 44ad54d9fa Revert "Split main thread webview serializer code into own file"
This reverts commit 04de465524.
2020-08-21 07:37:34 +02:00
Rob Lourens bc172e197d Fix language picker hover 2020-08-20 21:42:49 -07:00
Rob Lourens 956343798b Set context on delete cell toolbar
Fix #105109
2020-08-20 20:30:35 -07:00
Matt Bierner c85c46579e Pick up TS 4.0.2 2020-08-20 16:45:45 -07:00
Matt Bierner 04de465524 Split main thread webview serializer code into own file 2020-08-20 16:45:45 -07:00
Matt Bierner daf5143e35 Split webview serializers into own ext host service 2020-08-20 16:45:45 -07:00
Matt Bierner 6db81f6ab2 Move custom editors into own ext host services 2020-08-20 16:45:45 -07:00
Matt Bierner 4fd7f660a4 Move webview views into own ext host class
Also fixes message passing for webview views
2020-08-20 16:45:45 -07:00
Connor Peet dc0150c61a
debug: make auto attach apply state transition in new workspaces
Previous there was a case:

1. Auto attach was enabled in user settings and workspace A was open
2. Switch to workspace B, and then turn auto attach off in user settings
3. Switching back to workspace A, environment variables were not cleared

Now, the last state is stored in the workspace settings so that
we can tear down the previous state if necessary.
2020-08-20 16:06:18 -07:00
Rob Lourens b0c6e84bee Increase hover range for insertion toolbar
Fix #104854
2020-08-20 14:51:44 -07:00
Matt Bierner 61f799f53b
Add proposed webview view API (#104601)
Add proposed webview view API

For #46585

This adds a new `WebviewView` proposed api to VS Code that lets webview be used inside views. Webview views can be contributed using a contribution point such as :

```json
    "views": {
      "explorer": [
        {
          "type": "webview",
          "id": "cats.cat",
          "name": "Cats",
          "visibility": "visible"
        }
      ]
    },
```

* Use proper activation event

* Transparent background

* Fix resize observer

* Adding documentation

* Move webview view to new directory under workbench

* Remove resolver

By moving the webviews view into their own fodler, I was able to avoid the cycle the resolver was originally introduced for

* Use enum in more places

* Hook up title and visible properties for webview views

* Remove test view

* Prefer Thenable

* Add unknown view type error to collector
2020-08-20 13:59:22 -07:00
SteVen Batten 038e1a93b9 fixes #104967 2020-08-20 10:17:58 -07:00
Benjamin Pasero 1b7035d050 web - add a quality change handler 2020-08-20 15:32:54 +02:00
Benjamin Pasero 71e4d1dc2b 🆙 web playground 2020-08-20 15:19:38 +02:00
Sandeep Somavarapu 94364b7fb7 initialize keybindings and snippets after restored phase 2020-08-20 14:27:02 +02:00
Alex Ross 640caaef05 Finalize task custom execution variable resolving
Fixes #81007
2020-08-20 13:49:20 +02:00
Martin Aeschlimann 362e49228c renameOnType: debounce update request, trigger update on changes. Fixes #86845. Fixes #86845 2020-08-20 13:41:11 +02:00
Alex Ross 73d583f759 Move task definition variable resolving to be early
Part of #81007
2020-08-20 13:34:09 +02:00
Johannes Rieken 88b7db2815 workaround (fix?) for https://github.com/microsoft/vscode/issues/105073 @rebornix 2020-08-20 12:57:30 +02:00
Johannes Rieken 89a2411190 chore - make notebook cell language as readonly 2020-08-20 12:22:27 +02:00
Benjamin Pasero a9624db8e1
Web: remote indicator API (#105069)
* remote - refactor indicator a bit for better readability

* remote indicator - more refactorings and cleanup

* web api - shuffle some things around

* remote indicator - add remote transition indicator

* update remote indicator API

* 💄
2020-08-20 11:58:30 +02:00