Commit graph

42580 commits

Author SHA1 Message Date
isidor 1e3efda93c polish cgmanifest.json 2018-11-20 17:02:09 +01:00
Sandeep Somavarapu 3fcb2d24d9 Use monospace font for hovers 2018-11-20 16:51:12 +01:00
isidor 085f4656ed add some commit hashes and versions to cgmanifest.json 2018-11-20 16:31:08 +01:00
Andre Weinand b134a61eb2 introduce 'onDebugAdapterProtocolTracker' activation event 2018-11-20 16:23:55 +01:00
Alex Dima f8f7e7ea00 Fixes Microsoft/monaco-editor#1196 2018-11-20 16:23:01 +01:00
Benjamin Pasero 3a6362ef7f storage - bump telemetry id 2018-11-20 15:15:13 +01:00
Alex Dima bf8c26d202 Remove no longer needed license overrides 2018-11-20 15:05:48 +01:00
Alex Dima af951c6084 Tweak explanation 2018-11-20 14:19:31 +01:00
Alex Dima e205d57441 Remove unnecessary licenses 2018-11-20 14:17:15 +01:00
Benjamin Pasero bf4734afbc bump vscode-sqlite3@4.0.3 2018-11-20 12:59:59 +01:00
Isidor Nikolic ec98c79d44
Merge pull request #63497 from Microsoft/isidorn/cgmanifest
Start using component governance for oss tracking
2018-11-20 12:54:47 +01:00
isidor 9edd984da8 delete OSSREADME.json 2018-11-20 12:54:22 +01:00
isidor 9a3758ea19 Revert "only run component governance"
This reverts commit 9c655689da.
2018-11-20 12:43:53 +01:00
Alex Dima 621c45fbbe Fixes #63458: Restore stable mouse wheel logic 2018-11-20 11:27:22 +01:00
Joao Moreno 9e66eee67b Merge commit 'refs/pull/61454/head' of github.com:Microsoft/vscode into pr/61454 2018-11-20 10:51:35 +01:00
Joao Moreno d50df7622b Merge branch 'pr/61454' 2018-11-20 10:43:11 +01:00
Joao Moreno 85dd134658 improve dropdown menu placement for sidebar parts 2018-11-20 10:43:02 +01:00
Sandeep Somavarapu acab80e2c8
Merge pull request #63329 from vbfox/patch-1
Fix TreeViewOptions comment markdown
2018-11-20 10:22:40 +01:00
João Moreno 66f717cfa6
Merge pull request #60104 from mathiasvr/fix-60002
Fix #60002 Undo last commit: keep staged files
2018-11-20 09:59:42 +01:00
Joao Moreno 3af878c2d5 💄 2018-11-20 09:58:01 +01:00
Joao Moreno 6052fcf07f Merge commit 'refs/pull/59735/head' of github.com:Microsoft/vscode into pr/59735 2018-11-20 09:43:16 +01:00
Alex Ross 6bb77146c4
Add a rerun last task command (#62645)
Fixes #25310
2018-11-20 09:40:54 +01:00
Matt Crupi 47b3238330 Fix #63295: Refer to Sudo in Linux Save Error Message (#63394)
* Refer to Sudo in Linux filesave error

* Remove non-localized string constants
2018-11-20 07:13:55 +01:00
Matt Bierner d37f7c1583 Always dispose of DecorationCSSRules
Found while looking into #63467

There's potential leak for `DecorationCSSRules`. Currently we only dipose of them if `hasContent` is true, which I'm not sure guarantees that these classes are truely non-disposable

With this change, we always dispose of them. At worst, these extra dispose call should be noops
2018-11-19 18:55:45 -08:00
Matt Bierner 02a59c3015 Make CachedResponse generic 2018-11-19 18:48:36 -08:00
Matt Bierner fabc627634 Move getSymbolRange out of class 2018-11-19 18:46:09 -08:00
Matt Bierner 1f1618d280 Remove extra conditional
This should always be true
2018-11-19 18:41:26 -08:00
Matt Bierner f953906c74 Remove un-needed any cast 2018-11-19 18:24:59 -08:00
Matt Bierner 3b66ce3083 Mark fields readonly 2018-11-19 18:24:32 -08:00
Matt Bierner c4a8608f12 Don't cancel signature help until next real trigger
Fixes #58492

**Bug**
If multiple triggers come in at the same time, we currently lose the re-trigger state. This is caused by each trigger canceling the existing request. The first one is treated as a re-trigger, but all subsquent triggers look like fresh triggers

**Fix**
Move the cancelation into the actual trigger body.
2018-11-19 18:14:55 -08:00
Matt Bierner 8047109d3d Always cancel parameter hints on retrigger
Make sure we a trigger always cancels any pending requests, even if the model is now invalid
2018-11-19 18:07:33 -08:00
Matt Bierner 2fb2d49daf Use delayer for paramter hints trigger
Try to avoid using as much state.
2018-11-19 18:05:59 -08:00
Matt Bierner a2585f38fc Use hasModel 2018-11-19 17:27:53 -08:00
Matt Bierner 26cd646618 Remove unnessisary conditional
The body of these specific events are always non-null
2018-11-19 16:34:15 -08:00
Matt Bierner 277b96327f Enable loading indicator for subsequent js/ts project loads
Fixes #62978
2018-11-19 16:34:15 -08:00
Matt Bierner b115d8860c Extract loadingIndicator to class 2018-11-19 16:34:15 -08:00
Matt Bierner 300f1b8d98 Extract lazy activation logic 2018-11-19 16:34:15 -08:00
Andre Weinand 509f1233e4 Debug API: add registerDebugAdapterTracker 2018-11-20 00:49:42 +01:00
Alex Dima 18656c9c13 Extract to a method 2018-11-20 00:43:30 +01:00
Alex Dima b678bfe16c Improve labels 2018-11-20 00:37:04 +01:00
Matt Bierner 575e1630d5 Add API so that extensions can configure TS Server plugins
Fixes #63181

This is a replacement for the `_typescript.configurePlugin` command. Using a command, it is easy to forget to check if the js-ts extension is active before executing it. Using an actual api prevents this  and also allows better typing
2018-11-19 14:59:19 -08:00
Matt Bierner 848010a725 Strict null check configureSnippets 2018-11-19 14:35:28 -08:00
Matt Bierner 0e4d94e364 Stric tnull check snippetCompletionProvider 2018-11-19 14:35:28 -08:00
Matt Bierner 0cbb21ae6d Strict null check smartSelect 2018-11-19 14:35:28 -08:00
Matt Bierner 37f1605060 Strict null check snippetsFile.ts 2018-11-19 14:35:28 -08:00
Matt Bierner 66319f4a59 Strict null check environmentService 2018-11-19 14:35:28 -08:00
Matt Bierner 04067138d9 Strict null check snippetVariables 2018-11-19 14:35:28 -08:00
Matt Bierner 6448b30f36 Strict null check formatting edit 2018-11-19 14:35:28 -08:00
Matt Bierner 9867c9afad Strict null check chokidarWatcherService 2018-11-19 14:35:28 -08:00
SteVen Batten 9f5336555f Merge branch 'master' of https://github.com/Microsoft/vscode 2018-11-19 14:07:18 -08:00