Commit graph

104556 commits

Author SHA1 Message Date
Sandeep Somavarapu 664c4ebf6c
adopt to latest perf module (#171549) 2023-01-17 13:34:44 -08:00
Megan Rogge 12e6ef9799
allow multiple audio cues to play for diff navigation (#171546)
fix #171544
2023-01-17 21:53:48 +01:00
Sandeep Somavarapu 3572b5ea66
ux feedback (#171542) 2023-01-17 21:41:13 +01:00
João Moreno e57c7a1013
fix url routing with windowId (#171540)
fixes #169913
2023-01-17 21:22:08 +01:00
Peng Lyu 817c5fd7f9
Merge pull request #171539 from microsoft/rebornix/growing-eel
💄 remove more redundant cell layout requests.
2023-01-17 11:37:14 -08:00
Connor Peet dec4735ed6
server: fix cpu loop on SIGPIPE (#170305)
- One missed uncaughtException site was causing a loop (maybe we want
  to handle this error on onUnexpectedError instead?)
- The SIGPIPE listener itself was causing a loop, as well. Only try to log once.
2023-01-17 19:25:58 +00:00
rebornix 3bc5278c41
Notebook cell does not support traditional list view dynamic height. 2023-01-17 11:18:14 -08:00
rebornix 03438962dc
Reduce cell output layout update request. 2023-01-17 11:18:08 -08:00
rebornix e383729bcf
Set initial cell collapse state correctly 2023-01-17 11:18:04 -08:00
Matt Bierner cc65c347df
Pick up latest TS version for building VS Code (#171536) 2023-01-17 20:04:29 +01:00
Peng Lyu 1bbd5e1e87
Merge pull request #171533 from microsoft/rebornix/horizontal-duck
Remove redundant cell layout updates
2023-01-17 10:49:07 -08:00
rebornix 087d9cff0a
remove redundant cell layout updates. 2023-01-17 10:21:38 -08:00
rebornix 2605b69a30
inline cell relayout call. 2023-01-17 10:19:17 -08:00
Sandeep Somavarapu ebc7a21d55
Fix #139151 (#171529) 2023-01-17 18:42:05 +01:00
Jake Bailey 43907341df
Set disableLineTextInReferences=true in TS user preferences (#171376) 2023-01-17 16:46:36 +00:00
Sandeep Somavarapu b5249e5bc9
fix #171025 (#171522) 2023-01-17 17:44:35 +01:00
Connor Peet d5ab02349e rename cli binary to reflect quality 2023-01-17 08:19:36 -08:00
Connor Peet 2aecc85c22 cli: update help text of cli for standalone differentiation 2023-01-17 08:19:36 -08:00
Johannes Rieken 276c17839d
move src/vs/workbench/services/themes/test/node/tokenStyleResolving.test.ts into node layer (#171511)
https://github.com/microsoft/vscode/issues/171508
2023-01-17 17:09:02 +01:00
Daniel Imms 4f3f8c3368
Merge pull request #171495 from microsoft/tyriar/hyphen_r
Use -r over -f in bash si script
2023-01-17 07:54:20 -08:00
Sandeep Somavarapu 403e076ea7
Fix #170734 (#171507) 2023-01-17 16:00:43 +01:00
Benjamin Pasero b798a4c532
urls - more logging (#171505) 2023-01-17 15:56:54 +01:00
Daniel Imms b38b90db45
Merge pull request #171500 from microsoft/tyriar/171498
Show env var info in single tab
2023-01-17 06:54:02 -08:00
Benjamin Pasero 6d9b6c91f8
url - add more logging to link routing (#171503) 2023-01-17 15:36:25 +01:00
Daniel Imms a9a51fded0
Ensure correct instance is used for tooltip update 2023-01-17 06:14:10 -08:00
Daniel Imms d39c5a4757
Layout after markdown is done, don't set hover height 2023-01-17 06:09:46 -08:00
João Moreno e393004dae
Fix policy value (#171499)
fixes #163418
2023-01-17 15:01:10 +01:00
Daniel Imms 98770de0c0
Prefer some over find 2023-01-17 05:51:28 -08:00
Daniel Imms 992f45a5dd
Show env var info in single tab
Fixes #171498
2023-01-17 05:47:09 -08:00
Sandeep Somavarapu 19bd91a368
fix #171141 (#171497) 2023-01-17 14:28:09 +01:00
Johannes Rieken 1bf83c90e6
move slow test from electron-browser to electron-sandbox (#171494) 2023-01-17 14:19:59 +01:00
Sandeep Somavarapu 7dd867b768
fix #170736 (#171492) 2023-01-17 14:19:02 +01:00
Daniel Imms 89eb5b9018
Use -r over -f in bash si script
-r is for 'readable', -f is for 'regular files'
2023-01-17 05:10:40 -08:00
Sandeep Somavarapu 69d8e1f374
fix #171142 (#171490) 2023-01-17 14:00:18 +01:00
João Moreno e8fa61d2fc
retry terrapin 5 times (#171489)
fixes #170935
2023-01-17 13:48:02 +01:00
Ladislau Szomoru df6f1b8ac5
Git - only show unsafe repository notification if we cannot use a welcome view. (#171485) 2023-01-17 13:36:41 +01:00
Sandeep Somavarapu 7ca45e6949
global activity menu (#171481)
* prototype: global acitivty menu
- merge profiles and global acitivty menu
- clean up items in acitivity menu

* clean up global activity menu and merge profile menu

* bring back telemetry and online settings actions

* uncomment

* remove pick icon action
2023-01-17 12:40:51 +01:00
Christof Marti 5efa6f4e4f Allow @prerelease 2023-01-17 10:28:05 +01:00
Connor Peet 4d882322ca
cli: start to extract a generic rpc interface (#171299)
I want to use the rpc interface for communication via stdin/out in wsl,
but currently RPC is tightly coupled to the control server. The control
server also speaks msgpack instead of JSON, since it deals with binary
messages. WSL won't, and we'll want to use JSON to interact with VS
Code, so some separation is needed.

This pulls out a base set of RPC types for use in both scenarios.
Currently these are only 'helper' structs that don't actually do any
i/o, but once I figure out the model I would like to have a cleaner way
to do i/o in a unified way as well.

For the control server, previously we basically handled all methods in
one big `switch` block with nasty macros, whereas now there's
nicer `register_a/sync` functions.

Some additional small refactors were needed to preserve the strict
ordering of server messages, since they need to be order else we get
decompression errors. This is the `start_bridge_write_loop`. As a small
benefit, this means we can avoid the relatively expensive async Tokio
mutex that we were using, and instead use the standard library mutex.
2023-01-16 21:43:41 -08:00
Benjamin Pasero 1379f03754
Merge pull request #171323 from microsoft/ben/sheer-bee
Improve protocol link handling around `windowId=_blank` support
2023-01-16 16:07:57 +01:00
Benjamin Pasero e7c9b0ec0b
Merge branch 'main' into ben/sheer-bee 2023-01-16 15:16:39 +01:00
Benjamin Pasero a5ec27a72b
address feedback from @joaomoreno 2023-01-16 14:37:35 +01:00
Ladislau Szomoru f50eeb50b5
Git - Migrate post commit command storage (#171416)
* Git - Migrate post commit command storage

* Make it explicit that migration is async
2023-01-16 13:24:17 +00:00
Johannes Rieken f6a538af99
[esm] avoid __filename usage because that doesn't exist in ESM land (#171409) 2023-01-16 13:34:09 +01:00
Benjamin Pasero 2992efaa34
Label name with undefined when the workspace is not named (fix #171402) (#171412) 2023-01-16 13:33:43 +01:00
Sandeep Somavarapu d627ebb408
remote duplicates (#171377) 2023-01-16 12:22:18 +01:00
Henning Dieterichs 7ef08adcc6
Merge pull request #171406 from microsoft/hediet/revert-inline-suggest-shortcut
Revert "Fixes #140708 by introducing Ctrl+Right/Left keybindings to accept/undo parts of inline completions. (#171251)
2023-01-16 11:36:14 +01:00
Henning Dieterichs aefadd74fc
Revert "Fixes #140708 by introducing Ctrl+Right/Left keybindings to accept/undo parts of inline completions. (#171251)"
This reverts commit 140004f4ee.
2023-01-16 11:17:48 +01:00
Sandeep Somavarapu 58f0d465bd
clean up (#171395) 2023-01-16 09:59:59 +01:00
Joyce Er 05e1981145
Lint redundant package.json activation events (#171297) 2023-01-16 09:28:19 +01:00