Commit Graph

90679 Commits

Author SHA1 Message Date
alex-brs
f8ee1a1700 build/npm/preinstall: fix error message for node version 2021-11-09 13:21:53 -08:00
Matt Bierner
a88cbb54f8 Marking a few types/objects readonly 2021-11-09 13:05:53 -08:00
Matt Bierner
4b10eb130c Use Object.entries 2021-11-09 13:00:43 -08:00
Matt Bierner
2f6685acc4 Mark array readonly instead of property
We only support fully replacing the buttons, not calling `.push` on the array
2021-11-09 12:44:59 -08:00
Matt Bierner
4849b6ed41 Fix variable spelling 2021-11-09 12:42:23 -08:00
Matt Bierner
de17f447c3 Remove built-in markdown output renderer (#136696)
Fixes #136679

For rendering markdown, I believe we should always use the built-in contributed markdown renderer. Right now we also ship a renderer in core, but this one doesn't support some of the syntax/features as the one from the markdown extension
2021-11-09 12:16:03 -08:00
Tyler Leonhardt
f8ed49c5d3 finalize quickpick APIs 2021-11-09 10:51:07 -08:00
Megan Rogge
5fa4c888e6 fix #133741 (#136763) 2021-11-09 10:46:09 -08:00
Megan Rogge
d5d87b8fab fix #135798 (#136776) 2021-11-09 10:45:29 -08:00
Tyler Leonhardt
2368392b9b finalize silent option for getSession 2021-11-09 10:31:36 -08:00
Alex Dima
574ad9deb5 update distro 2021-11-09 19:13:05 +01:00
Daniel Imms
bd98431baf Write basic terminal default profile test
Co-authored-by: Megan Rogge <merogge@microsoft.com>
2021-11-09 10:10:54 -08:00
deepak1556
ac29daaf3b Fixes #136771: update to Electron v13.5.2 and pass --ms-enable-run-as-node together with ELECTRON_RUN_AS_NODE 2021-11-09 19:09:26 +01:00
Alex Dima
36b7d6e8bc Fixes microsoft/monaco-editor#2750 2021-11-09 18:20:39 +01:00
Alex Dima
7bd792a094 monaco-editor-core@0.30.0 2021-11-09 18:20:34 +01:00
Alex Dima
5a0d53823b Fixes microsoft/monaco-editor#2660: If available, create a rule for default tokens using the editor.foreground and editor.background colors 2021-11-09 18:20:25 +01:00
Alex Dima
d2587206e4 Fixes microsoft/monaco-editor#2650: Move scrollbar style participant down to the editor layer 2021-11-09 18:20:18 +01:00
Jackson Kearl
9472f26109 Fix #136700 2021-11-09 08:46:34 -08:00
Henning Dieterichs
9fbabfcd4c Implements #136764 by not triggering inline suggestions on undo/redo. 2021-11-09 17:45:51 +01:00
Daniel Imms
628f486b1d Move playwright driver impl to class
Part of #136064
2021-11-09 08:45:08 -08:00
Sandeep Somavarapu
60fe8d9553 fix #132183 - finalize api 2021-11-09 17:32:00 +01:00
Daniel Imms
28da3051b3 Tidy up smoke test imports 2021-11-09 08:26:39 -08:00
Daniel Imms
281bacb074 Stub out some terminal smoke tests
Part of #136064
2021-11-09 08:25:15 -08:00
Daniel Imms
1cbf69d996 Document --headless in smoke tests 2021-11-09 08:24:38 -08:00
Sandeep Somavarapu
a315fd8f2e #133201 add more logging 2021-11-09 16:57:27 +01:00
Daniel Imms
8510f3265f Merge pull request #136522 from microsoft/tyriar/terminal_layout
Get terminal scroll bars pixel perfect
2021-11-09 07:57:15 -08:00
Filip Troníček
9d4a8af637 Deprecate connection-token 2021-11-09 15:57:05 +00:00
Daniel Imms
a9bf40f217 Update xterm
Commit: 0bc02d6838a2a75048001003617bf172efcf622b
2021-11-09 07:56:50 -08:00
Daniel Imms
dd8a0996e8 Ignore errors when terminal is disposed during fetching xterm ctor
Fixes #135002
2021-11-09 07:35:57 -08:00
Daniel Imms
fc9167052f Only use isWrapped workaround on Windows 2021-11-09 07:26:14 -08:00
Johannes Rieken
68e819043c use tsconfig.json#include for vscode.d.ts and vscode.proposed.d.ts, enables to remove most ref.d.ts-files 2021-11-09 15:53:35 +01:00
Daniel Imms
854f7f23ff Merge remote-tracking branch 'origin/main' into tyriar/terminal_layout 2021-11-09 06:50:08 -08:00
Daniel Imms
918ebda21b Don't stop wheel event propagation 2021-11-09 06:48:17 -08:00
Alex Ross
93ce4397a2 Bump distro 2021-11-09 15:47:17 +01:00
Benjamin Pasero
4b5611b433 fix #136734 2021-11-09 15:40:23 +01:00
João Moreno
5417e2aea2 remove unused import 2021-11-09 15:37:12 +01:00
João Moreno
7a938550cf refactor: ⚰️ remove dead code 2021-11-09 15:37:12 +01:00
Daniel Imms
9bdefa7e9d Further clean up 2021-11-09 06:31:22 -08:00
Daniel Imms
bc9b6d1295 Clean up css 2021-11-09 06:20:12 -08:00
Daniel Imms
2003092730 Tweak z-index so split pane sash is above everything 2021-11-09 06:19:58 -08:00
Sandeep Somavarapu
bf14040d7f Fix #136732 2021-11-09 15:12:03 +01:00
Daniel Imms
d019c24d5e Use base _rows not rows when setting fixed 2021-11-09 06:11:35 -08:00
João Moreno
f18b29e132 fix(scm): 🐛 do not await git repo status, just give the repo straight up to scm
on repo discovery, the git extension would run `git status` and wait for that to finish before handing out the repository to scm. this was problematic since the scm default repo selection depends on repos being discovered in a timely fashion. there's no reason not to just hand out the repo to scm and let `git status` finish afterwards

Closes: #120089
Closes: #113803
2021-11-09 15:11:16 +01:00
João Moreno
1c230ef1e3 fix(table): 🐛 double clicking sashes should restore column's size
Closes: #117398
2021-11-09 15:11:15 +01:00
João Moreno
d7ee56c4a5 style: 💄 2021-11-09 15:11:15 +01:00
Johannes Rieken
9254a8cd27 move vscode.d.ts and vscode.proposed.d.ts into src/vscode-dts-folder, https://github.com/microsoft/vscode/issues/131165 2021-11-09 15:00:03 +01:00
Daniel Imms
86fde89f56 Merge remote-tracking branch 'origin/main' into tyriar/terminal_layout 2021-11-09 05:58:54 -08:00
Sandeep Somavarapu
2bd6e00896 fix #136731 2021-11-09 14:45:29 +01:00
Johannes Rieken
799d82fcc3 add isProposedApiEnabled-util, move checkProposedApiEnabled-util, use utils instead of reading the enableProposedApi-property, https://github.com/microsoft/vscode/issues/129037 2021-11-09 14:13:32 +01:00
Johannes Rieken
9867849287 use nullExtensionDescription in more places, https://github.com/microsoft/vscode/issues/131165 2021-11-09 13:52:01 +01:00