Commit Graph

39710 Commits

Author SHA1 Message Date
Alex Ross
e6ef901bda Wait to call registerOnDataListener until the terminal id has been set (#58644) 2018-09-14 09:09:11 -07:00
Alex Ross
529c82649b Extension host terminal onData events need to be queued when the terminal ID is not yet set (#58627) 2018-09-14 09:06:49 -07:00
Alex Dima
c77cc9898f Clear bracket matching cached data when switching models (#58632) 2018-09-14 16:42:01 +02:00
Sandeep Somavarapu
7f742f284f Fix #27654 2018-09-14 16:24:53 +02:00
Joao Moreno
6c5977e76b fixes #53942 2018-09-14 16:14:40 +02:00
Joao Moreno
964103c9d8 fixes #47743 2018-09-14 16:00:54 +02:00
Joao Moreno
1e77099242 scm status bar tracks open file
fixes #47332
2018-09-14 15:56:20 +02:00
Sandeep Somavarapu
0b8d53fa9b Fix #58667 2018-09-14 15:35:25 +02:00
Alex Dima
8d14d4be85 Add a Start Debugging Extension Host action in Runtime Extensions 2018-09-14 15:26:09 +02:00
Joao Moreno
f5658f092d scm.acceptInput command
fixes #42862
2018-09-14 15:23:51 +02:00
Benjamin Pasero
18f72715d3 💄 2018-09-14 15:01:30 +02:00
Benjamin Pasero
4302deb97c notifications - fix keepOpen not working (fix #58689) 2018-09-14 14:59:05 +02:00
Sandeep Somavarapu
6edaab7af4 Add documentation for --force argument 2018-09-14 14:39:38 +02:00
Sandeep Somavarapu
dc62a6efcc Fix #17577 2018-09-14 14:04:21 +02:00
Joao Moreno
23efb2fbb0 fixes #25281 2018-09-14 12:34:45 +02:00
Sandeep Somavarapu
d32337c626 Return error if extension to uninstall is not found 2018-09-14 12:13:12 +02:00
Benjamin Pasero
c958e89499 fix Microsoft/monaco-editor/#879 2018-09-14 11:53:44 +02:00
Sandeep Somavarapu
a512136503 Fix tests 2018-09-14 11:36:29 +02:00
Sandeep Somavarapu
6afc2c69b6 Fix #23356 2018-09-14 11:08:11 +02:00
Erich Gamma
6bee7fc45d Simplify label and do not show the folder name 2018-09-14 10:57:58 +02:00
Erich Gamma
f7653eb02b Fixing NPM Scripts explorer shows the root folder only on the root package.json #50845 2018-09-14 10:52:50 +02:00
Joao Moreno
2c0167ef99 git: getBranch should resolve @ name syntax 2018-09-14 10:14:50 +02:00
Alex Dima
29e6dce435 Fixes #58672: Accomodate for never completed requests 2018-09-14 10:00:52 +02:00
Joao Moreno
87dbb3a1a6 git: getConfig should trim result 2018-09-14 09:22:35 +02:00
JYX
f448ddebe3 Update tsconfig.schema.json (#58582)
It's actually a config for ts compiler not for js.
2018-09-13 23:47:33 -07:00
Daniel Imms
a542a0afb5 Base terminal bg on panel bg again 2018-09-13 20:39:40 -07:00
Rob Lourens
6bc165d47c Fix #58309 - possibly same as #58311 but be safe 2018-09-13 17:49:46 -07:00
Rob Lourens
d0e6e63d02 Fix #58311 - when settingsTreeModel hasn't been created yet, always do full onConfigUpdate 2018-09-13 17:44:28 -07:00
Rob Lourens
2664b2f3b3 Fix #58310 - dispose the disposables 2018-09-13 17:41:17 -07:00
Ramya Achutha Rao
60b36fc58a Microsoft online service 2018-09-13 16:57:16 -07:00
Matt Bierner
df09299e50 Pick up new distro version
Fixes #57079

- Whitelist badgeGen as a trusted badge provider
2018-09-13 15:51:16 -07:00
Matt Bierner
b70c9308fa Use async import for registering update paths 2018-09-13 15:43:47 -07:00
Matt Bierner
6f440fcb7e Register a single workspacesymbol provider for js/ts
Avoid potentially making two workspace symbol: one for js and one for ts
2018-09-13 15:43:47 -07:00
Matt Bierner
4096b5d68e Avoid uri parse warnings for markdown uris
Fixes #58566

We only support local file links or a small set of normal schemes, like `http` and `mailto`. Use this to avoid calling `Uri.parse` with scheme-less paths such as `Uri.parse('/images/cat.gif')`
2018-09-13 15:43:47 -07:00
Peng Lyu
de57f74a3a Fix #50825. Use active input border for find in selection button. 2018-09-13 15:05:19 -07:00
Alex Dima
252a673d6c Fixes #58612: Detect when the extension host is unresponsive 2018-09-14 00:00:43 +02:00
Martin Aeschlimann
c0bbadd911 remove meta.selector color rule (for #56813) 2018-09-13 22:39:31 +02:00
Rob Lourens
8c17b44b4e Fix #51467 2018-09-13 12:46:52 -07:00
Matt Bierner
dbeeecbaed Refactoring to create TS Server object
Rebase of a number of incremental changes listed below

Move first level dispatchMessage into ForkedTsServerProcess

Goal is to move callbacks and other per-server state into `ForkedTsServerProcess`

Create forked ts server object syncrounously

There is no reason for this to be async anymore. Making this object sync reduces complexity and makes the code easier to reason about

Moving server relate functions into ForkedTSServer object

The goal here is to have a single "server" object that keeps track of all its relevant state. The service client would manage one of these servers at a time, starting new ones if needed and dispatching to old ones

Split server into own file

Use switch case instead of conditionals

Make pendingResponses readonly

Add typings for callback item

Improve naming

- Use more descriptive names
- Preview private vars with _

Use passed in version for getting command line args

Attach webview click handler to window instead of to document body

Fixes #48926

Change error handling for ts server exit and error

- Don't fire twice on error (once for the `once` and once for the `onError`)
- Flush callbacks on both exit and error.

Remove cancellationPipeName as state

Remove obsolete comment

Move all env generation into generatePatchedEnv

Extract server spawn into static method

Move spawn from static to be own factory class

Move providers from arguments to state on the spawner

Update js/ts grammar

Remove duplicate error handler

Cleaning up server fork

- Standarize names
- Extract methods
- Move some function to be private statics
- Move logging out of electron and into server.ts

Use undefined instead of null for optional value
2018-09-13 11:55:44 -07:00
Andre Weinand
fb204a3610 improve error handling for socket DA 2018-09-13 20:07:47 +02:00
Rob Lourens
4e59ab3657 Fix #48073 2018-09-13 10:34:33 -07:00
Rob Lourens
67f2a5a6ec Fix double-trigger search when submit in excludes input 2018-09-13 10:34:33 -07:00
SteVen Batten
a62f04a2e9 fixes #58603 2018-09-13 10:09:42 -07:00
Miguel Solorio
337c626b07 Make ignored folders darker 2018-09-13 09:44:47 -07:00
Joao Moreno
ccf247b2fb fixes #50736 2018-09-13 18:15:55 +02:00
Joao Moreno
522e3a0c2a 💄 2018-09-13 17:46:12 +02:00
Joao Moreno
9db3cbc31b Merge commit 'refs/pull/58373/head' of github.com:Microsoft/vscode into pr/58373 2018-09-13 17:45:12 +02:00
Joao Moreno
91682677e9 Merge branch 'pr/58380' 2018-09-13 17:38:02 +02:00
Joao Moreno
5215a5a619 💄 2018-09-13 17:37:52 +02:00
Joao Moreno
c555552d81 Merge commit 'refs/pull/58380/head' of github.com:Microsoft/vscode into pr/58380 2018-09-13 17:33:16 +02:00