Commit graph

96699 commits

Author SHA1 Message Date
Martin Aeschlimann 49944b1501 DiagnosticsSupport for json and html 2022-05-22 20:03:30 +02:00
Martin Aeschlimann aacb387ef1 implement diagnostic pull 2022-05-22 20:03:30 +02:00
Tyler James Leonhardt 93ec6bd572
Screen reader should read quick pick title field if set (#149992) 2022-05-21 22:49:45 -07:00
Rob Lourens 3649387f3f
Bump php grammar, fix #142824, fix #116103 (#150067) 2022-05-21 00:18:25 +00:00
Logan Ramos d1d31a2849
Fix weird undefined bug (#150063) 2022-05-20 19:41:56 -04:00
Matt Bierner 96cae45ba9
Rename skipPaths to ignoreLinks (#150064)
This change renames the experimental skipPaths setting to ignoreLinks. This setting applies to all types of links, and can also be used to ignore links to headers
2022-05-20 22:54:21 +00:00
Logan Ramos ecf7f9cfd9
Add scope resource (#150056) 2022-05-20 14:34:17 -07:00
Daniel Imms c061ce5c24
Merge pull request #150052 from microsoft/tyriar/143832_2
Normalize slashes on Windows to correct link URI
2022-05-20 13:44:23 -07:00
Megan Rogge fdeba7d869
fix task status issues (#149976) 2022-05-20 13:40:39 -07:00
Daniel Imms 1f5563fe8e
Fix unit test to use new correct uri path 2022-05-20 13:35:42 -07:00
Daniel Imms ed4e2d7778
Merge pull request #150050 from microsoft/tyriar/146059
Use correct terminal dimensions when restoring a terminal
2022-05-20 13:32:41 -07:00
Jackson Kearl 5062feaeaa
Fix #150028 (#150053) 2022-05-20 20:27:46 +00:00
Logan Ramos da180bced6
Hide explorer entries based on git ignore file (#149967)
* Hide explorer entries based on git ignore file

* Remove dependency on search

* Address PR feedback

* Add setting and make multi workspace aware

* Use `isPathIncludedInTraversal`
2022-05-20 13:24:04 -07:00
Daniel Imms 3f5fed084c
Normalize slashes on Windows to correct link URI
Fixes #143832
2022-05-20 12:52:21 -07:00
Daniel Imms 8d15d2f9d0
Merge pull request #150046 from microsoft/tyriar/149866
Fix DecorationAddon being disposed of immediately
2022-05-20 12:46:07 -07:00
Daniel Imms 93f62cf9d8
Merge pull request #150049 from microsoft/Tyriar-patch-1
Fix typo in autoReplies setting
2022-05-20 12:35:37 -07:00
Daniel Imms 192ca6ffe2
Merge pull request #150045 from microsoft/tyriar/149867
Fix exception that could occur during render
2022-05-20 12:34:48 -07:00
Daniel Imms b0f22006a2
Merge branch 'main' into tyriar/149866 2022-05-20 12:34:26 -07:00
Daniel Imms 900b8700cb
Use correct terminal dimensions when restoring a terminal
Fixes #146059
2022-05-20 12:31:47 -07:00
Daniel Imms 281f027d00
Fix typo in autoReplies setting 2022-05-20 12:16:53 -07:00
Esteban Dalel R e76ad21903
Fix typo (#150042) 2022-05-20 19:06:35 +00:00
Daniel Imms 9e1c5d60ae
Fix exception that could occur during render
Fixes #149867
Fixes #149865
2022-05-20 11:45:01 -07:00
Daniel Imms 351b4a914e
Re-enable shell integration tests for macOS
Fixes #149757
2022-05-20 11:41:17 -07:00
Daniel Imms 279b7a8633
Fix DecorationAddon being disposed of immediately
Regressed in #148972

Fixes #149866
2022-05-20 11:38:31 -07:00
SteVen Batten 4309c752dd
use css px increments for view size changes (#150039)
fixes #149488
2022-05-20 10:56:14 -07:00
zz de0b9e00ea
Add "pnpm-lock.yaml" to the child patterns of "package.json" (#146869)
Co-authored-by: Jackson Kearl <jakearl@microsoft.com>
2022-05-20 09:42:27 -07:00
SteVen Batten e2dff56c36
fixes #150034 (#150035) 2022-05-20 16:34:41 +00:00
SteVen Batten 9087550432
better z-indexes for title menu and quick pick (#150033) 2022-05-20 12:30:25 -04:00
Matt Bierner 993c36c920
Fix markdown ext errors accessing disposed webview (#149960)
When reloading windows that need to restore a markdown preview, sometimes I'll see an error when the markdown preview tries accessing a disposed of webview. This seems to be cause caused by `provideTextDocumentContent`, where we end up disposing of the webview before an `await` resumes execution
2022-05-20 09:17:57 -07:00
Sandeep Somavarapu d93881d706
Fix #149518 (#150022) 2022-05-20 14:32:37 +02:00
Tyler James Leonhardt 29f30af164
Add an aria label to the checkall checkbox (#149994) 2022-05-20 05:23:39 -07:00
Alexandru Dima c4870970ab
Run a job on main which only warms up the node modules cache (#150007) 2022-05-20 10:52:56 +02:00
Isidor Nikolic d91e5d1d36
Merge pull request #149999 from microsoft/isidorn/zesty-baboon
update distro
2022-05-20 10:39:44 +02:00
Alexandru Dima fc9732a683
Spawn the extension host directly from the main process because fork() is now fast again (#150002) 2022-05-20 08:10:39 +00:00
isidor a952653a56
update distro 2022-05-20 09:54:10 +02:00
Matt Bierner e9393b096d
Inline webview main.js (#149983)
For #145567

This inlines the `main.js` script that webview use. This saves us an extra request at the cost of currently having to maintain two copies of the source from `main.js`
2022-05-20 09:07:20 +02:00
Matt Bierner 17c75e1180
Allow reusing webview origins across reloads (#149950)
* Allow reusing webview origins across reloads

Currently webviews are always loaded into a unique origin. This keeps them isolated but also means that we can't benefit from caching across window reloads

This change adds a new `origin` option that you can pass to webviews which controls the origin they use. If this origin is not provided, we use a random one instead

We then save off this origin for webview panels and restore it on window reloads. Webviews restore a little faster on window reload

* Update webview fallback version
2022-05-19 16:07:14 -07:00
Connor Peet 08f247b552
debug: bump js profile visualizer (#149981) 2022-05-19 22:50:55 +00:00
Rob Lourens 55abdaee3e
Render outputs a viewport above as well as below (#149879)
* Also render outputs/markdowns a viewport above the current viewport, as well as below
Towards #148164

* Update docs and add background color to svg
2022-05-19 22:12:43 +00:00
Matt Bierner 0ee05bb617
Pick up latest markdown-it-katex (#149978)
Fixes #149682
2022-05-19 21:54:08 +00:00
Connor Peet 3b3a3e3e36
remote: fix wrong event name used for latency (#149973) 2022-05-19 17:08:15 -04:00
Matt Bierner 92b6c1be54
Allow cancelling webview's readFileStream (#149964)
This passes a cancellation token to `readFileStream`. This ensures we stop reading the file if the webview is disposed of
2022-05-19 18:50:28 +00:00
Rob Lourens 2c9c8e6770
Fix lazy button layout and cursor (#149963)
Fix #149875
2022-05-19 18:43:09 +00:00
Matt Bierner a00e138040
Changing dependency syntax for markdown-it-katex (#149962)
Fixes #149291
2022-05-19 18:25:45 +00:00
SteVen Batten 85bf8af5b9
Improve Counter-Zoom Handling for Context Views (#149958)
* fixes #149957

* fixes #149741

* use const

* use const
2022-05-19 18:20:48 +00:00
Matt Bierner 3f27a6103b
Pick up latest TS nightly for building VS Code (#149959) 2022-05-19 11:01:45 -07:00
David Dossett 6e36be6f33
Align menubar hover background with rest of titlebar items (#149956) 2022-05-19 17:49:29 +00:00
Raymond Zhao a3243b282c
Add indicator, fixes #148672 (#149294)
* Add indicator, fixes #148672

This PR adds a default override indicator to extension-contributed
language-specific default setting overrides.

* Remove indicator from language tag settings
2022-05-19 08:12:29 -07:00
Alex Dima 0db3cee2a4 let -> const 2022-05-19 16:15:50 +02:00
João Moreno a63bebc296
build: ⬆️ bump deemon (#149938)
fixes deemon issue

https://github.com/joaomoreno/deemon/issues/6
2022-05-19 14:02:56 +00:00