Commit graph

84484 commits

Author SHA1 Message Date
Alex Ross
20099087a0
Simplify port forward parameters 2021-06-25 14:43:23 +02:00
Daniel Imms
f20eceb458 Tidy up options or profile validation 2021-06-25 05:34:59 -07:00
Daniel Imms
af31cacb72 Fix split with profile in panel 2021-06-25 05:29:36 -07:00
Daniel Imms
c4f332d5e6 Fix icons coming through as strings not codicons 2021-06-25 05:24:37 -07:00
Johannes Rieken
b57065709d
adopt allSettled in AsyncEmitter and move back into event.ts, https://github.com/microsoft/vscode/issues/121144 2021-06-25 14:24:12 +02:00
Johannes Rieken
bba84610e6
Align lib-definition of tsconfig.base with supported browsers reality. The smalled common denominator between Chrome, Edge, and Safari is surpisingly large and except for Atomics/SharedMem everything up until es2021 is OK, https://github.com/microsoft/vscode/issues/121144 2021-06-25 14:17:50 +02:00
Daniel Imms
39208ad5ae
Make sure background images don't show on terminal editors 2021-06-25 04:49:51 -07:00
Daniel Imms
062c3324c2 Add configure options to editor dropdown 2021-06-25 04:33:21 -07:00
Alex Ross
4e067da846
Reset tunnel protocol when setting is deleted 2021-06-25 13:24:50 +02:00
Daniel Imms
52f57284ad Support splitting in editor with profile 2021-06-25 04:17:12 -07:00
Alex Ross
d6c109bae8
Read correct value when adding port attributes 2021-06-25 13:11:25 +02:00
Daniel Imms
46fa76a532 Fix double click open mode in tabs list
editorOptions.pinned was checked to fix middle click changing the active instance
in #124849, but it seems that's not needed. Plus double click would always pin
'the editor' which caused this bug.

Fixes #126381
2021-06-25 03:46:15 -07:00
deepak1556
7eae810d8a chore: disable sandbox on snap package
Fixes https://github.com/microsoft/vscode/issues/127081
Refs https://github.com/microsoft/vscode/issues/127140
2021-06-25 19:26:08 +09:00
Alex Ross
c0cf0a12c6
Change protocol to be written to remote settings 2021-06-25 12:03:20 +02:00
isidor
1ef0e4c7d3
Fix that while debugging cannot continue a process that is not in focus
fixes #125327
2021-06-25 12:01:34 +02:00
João Moreno
8d7db6955d
remove proposal check
closes #124263
2021-06-25 11:49:37 +02:00
João Moreno
1834a0da4d
fixes #126502 2021-06-25 11:46:24 +02:00
isidor
126ecebbcd
Let users pick from installed debuggers before sending them to the Marketplace
fixes #126962
2021-06-25 11:40:48 +02:00
dependabot[bot]
2be485073a
Bump color-string from 1.5.4 to 1.5.5 (#127045)
Bumps [color-string](https://github.com/Qix-/color-string) from 1.5.4 to 1.5.5.
- [Release notes](https://github.com/Qix-/color-string/releases)
- [Changelog](https://github.com/Qix-/color-string/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Qix-/color-string/compare/1.5.4...1.5.5)

---
updated-dependencies:
- dependency-name: color-string
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-25 02:12:21 -07:00
Isidor Nikolic
a9d716df00
Merge pull request #126852 from suzmue/toplevel
Set top level stopped reason when threadId not specified
2021-06-25 11:09:20 +02:00
Sandeep Somavarapu
17bf4db58f
update distro 2021-06-25 08:54:33 +02:00
Benjamin Pasero
07ad0309c8
editor models - add missing super.resolve 2021-06-25 08:52:55 +02:00
Benjamin Pasero
482da3fb80
transient workspaces - add tests (#119695) 2021-06-25 08:52:21 +02:00
rebornix
49e1f99198 set controller first. 2021-06-24 18:46:58 -07:00
rebornix
1750b2b231 select kernel for iw. 2021-06-24 17:15:38 -07:00
Daniel Imms
6931c0205f Create new default terminal in editor 2021-06-24 16:52:12 -07:00
Daniel Imms
80d1321549 Terminal editor + button
Part of #126256
2021-06-24 16:46:54 -07:00
Daniel Imms
3b5a5e9fe8 Don't unsplit when dragging to the bottom
Fixes #125397
2021-06-24 16:05:48 -07:00
Daniel Imms
923db716fe Implement process orphan handling in local
Fixes #127091
2021-06-24 15:54:34 -07:00
Daniel Imms
b353efedb5 Use optional chaining, remove ! assertions 2021-06-24 15:45:13 -07:00
rebornix
b5e11d4e46 history support. 2021-06-24 15:40:31 -07:00
Daniel Imms
6023fc0555 Ensure icon change event is fired after process launch
Fixes #127109
2021-06-24 15:36:31 -07:00
Megan Rogge
fc9962bc88
move find out of terminal service and get find to work in terminal editors (#127100) 2021-06-24 22:10:26 +00:00
Daniel Imms
e2331fd66b Move terminal dnd special case to tabs list
Fixes #127077
2021-06-24 14:28:31 -07:00
rebornix
8ff7ed998a hide iw command from f1. 2021-06-24 14:08:55 -07:00
SteVen Batten
94463fabc2 fixes #126614 2021-06-24 12:24:27 -07:00
Henning Dieterichs
da78302dfd
Dont query the range of a node after it is deleted. 2021-06-24 21:14:51 +02:00
Connor Peet
6a76c62232
testing: remove data from TestItems
Data was viral and spread generics all over the place. It was also
hard to type correctly and consistently, which ended up in the type
being `any` unless great care was taken.

This removes the `data`. Instead, consumers can use a `WeakMap<TestItem, T>`
to keep data associated with the test item. This is a similar pattern
to what is used to store data about documents and debug sessions, for
example. Here's an example of a migration:

8fdf822985 (diff-2fe3ad6ad19447c57c5db14c5a6ccb5544944494db6b909540d70ea499784b49R9)
2021-06-24 12:02:49 -07:00
Logan Ramos
44445888fa
Fix #127084 2021-06-24 14:52:31 -04:00
Raymond Zhao
9a8a439dd2
Add iframe search with debounce (#125856)
Add search for iframe based webviews. Fixes #96307

Co-authored-by: Matt Bierner <matb@microsoft.com>
2021-06-24 11:49:39 -07:00
Logan Ramos
e8c7c40eb6
Fix #127085 2021-06-24 14:28:20 -04:00
Daniel Imms
fbaf4b1b58
Merge pull request #127080 from microsoft/tyriar/dnd_fixes
Terminal drag and drop fixes
2021-06-24 10:51:16 -07:00
Sandeep Somavarapu
df424703ce
update comments 2021-06-24 18:49:54 +02:00
Benjamin Pasero
a5dda82902
transient workspaces - do not add to workspaces history (#119695) 2021-06-24 18:43:34 +02:00
Sandeep Somavarapu
9587e96084
do not show download locally action in web 2021-06-24 18:30:25 +02:00
João Moreno
820300ce2b
hmmm 2021-06-24 18:01:35 +02:00
Megan Rogge
4d9fa61302
Set active instance and ensure commands work (#126850) 2021-06-24 15:33:38 +00:00
Suzy Mueller
f9eb74eb25 Merge branch 'main' of https://github.com/microsoft/vscode into toplevel 2021-06-24 11:25:25 -04:00
Henning Dieterichs
be9ba61e2a
Fixes test. 2021-06-24 17:00:25 +02:00
João Moreno
aa6e7ffdf4
snap: create it even when stepping on it
related to #127039
2021-06-24 16:53:44 +02:00