Commit Graph

124157 Commits

Author SHA1 Message Date
John Willard 943ac785fa Show custom label in quick open 2024-04-05 13:08:24 -06:00
Aaron Munger 235d4d104b larger threshold for trackpad variability (#209674) 2024-04-05 11:45:07 -07:00
Connor Peet 5edc703773 menus: fix descenders missing from context menu options (#209672)
Fixes #209621, apply the fix locally for testing instead
2024-04-05 11:01:21 -07:00
Connor Peet f144cce3c5 debug: bump table visualizer (#209590) 2024-04-05 18:45:49 +02:00
Johannes Rieken 5d1a905004 triage-needed should run for all repos (#209647) 2024-04-05 16:40:15 +02:00
Johannes Rieken 2a347db49e Prepare for inline chat participants (#209628)
* debt - remove bridge agent when "true" agent appears

* create a SessionExchange from chat model request/response pair

* fix markdown message passing

* use (a little) more of ChatModel world and less of inline chat models

* remove unused test

* fix tests
2024-04-05 16:27:17 +02:00
Daniel Imms 799f31a79d Don't warn about transparency on border theme keys
Fixes #201304
2024-04-05 07:08:06 -07:00
Johannes Rieken 47fc35d216 add StableEditorBottomScrollState so that inline chat moves lines of interest less (#209637)
there is still some movement because the height of the zone changes through out the request
2024-04-05 16:02:52 +02:00
Alex Ross 927ff5bac3 Bump distro (#209636) 2024-04-05 15:55:58 +02:00
Aiday Marlen Kyzy 344682bd17 Fixing typo in description (#209630)
fixing typo
2024-04-05 15:15:51 +02:00
Johannes Rieken dce0137750 debt - arrays.ts#tail can return undefined (#209631) 2024-04-05 06:10:45 -07:00
Aiday Marlen Kyzy ed4edd6ed8 Adding command descriptions for TF-IDF search (#209612)
adding descriptions
2024-04-05 14:31:56 +02:00
Matt Bierner 8cae0f0f71 Expose comments input as text document (#209512)
* Expose comments input as text document

Fixes https://github.com/microsoft/vscode-pull-request-github/issues/5875
For #209508

Exposes comment input editors as text documents that extensions can see. Enables a few features in them too such as 'paste as' and 'drop into'

* Small fixes

* Enable markers in comments

* Fix async

* Fix comment buttons on the top

---------

Co-authored-by: Alex Ross <alros@microsoft.com>
2024-04-05 11:20:33 +02:00
Benjamin Christopher Simmonds 2fa8d0c118 Merge pull request #209604 from microsoft/benibenj/governing-caterpillar
Add customizable colors for tree sticky scroll
2024-04-05 10:44:57 +02:00
BeniBenj ab4e8b5398 Add tree sticky scroll colors based on view location fixes #205441 2024-04-05 09:33:37 +02:00
Matt Bierner 884c8a6566 Set role on lightbulb widget (#209592) 2024-04-04 22:07:47 -07:00
Rob Lourens d6eba9b861 Fix leak (#209588)
Fix #208621
2024-04-04 20:52:04 -04:00
Raymond Zhao 8a4163d685 fix: add open user settings JSON description (#209583) 2024-04-05 01:08:50 +02:00
Rob Lourens 09c9ded1df Make all remote chat agents sticky (#209579) 2024-04-05 00:45:10 +02:00
Rob Lourens 8098a783f2 Clean up chat submit actions (#209578)
* Align submit/send actions in chat

* Clean up chat submit actions
2024-04-05 00:38:05 +02:00
Raymond Zhao 0da22a2260 fix: deprecate unity-launch flag (#209471) 2024-04-04 15:18:19 -07:00
Peng Lyu 07e1e8bba0 Update borders on template reuse. (#209577) 2024-04-04 23:49:52 +02:00
Don Jayamanne a64b5181b7 Strongly typed instead of any for nb config (#209493)
* Strongly types instead of `any` for nb config

* fix swapped setting fallbacks

* Address review comments

---------

Co-authored-by: Michael Lively <milively@microsoft.com>
2024-04-04 23:15:02 +02:00
Diogo Pinto 158137bac8 fix: serialization of newline characters 2024-04-04 22:08:21 +01:00
Premium 95885d7d9c feat. add a menu item 'expand-select' to expand subtree in search view (#206033)
* feat. add a menu item 'Expand All' to expand subtree

* feat. update menu text
2024-04-04 13:57:51 -07:00
Daniel Imms 9ccaf9d843 Merge pull request #209490 from microsoft/tyriar/test_leak
Clean up some tests, fix some leaks
2024-04-04 13:42:11 -07:00
Matt Bierner 74fff91cc9 Pick up latest md language service (#209574) 2024-04-04 22:27:25 +02:00
Connor Peet 180710a2df debug: add some command descriptions (#209570)
For #209511
2024-04-04 20:56:34 +02:00
Connor Peet 6813d7ccbc chore: update to rust 1.77 (#209563)
* chore: update to rust 1.77

* fix tests
2024-04-04 20:34:01 +02:00
Connor Peet 3c28146797 testing: remove back compat shims for coverage API (#209559)
Now that the API is finalized, remove the back compat shims that were in place
2024-04-04 19:46:32 +02:00
Matt Bierner 0203900335 Add command description (#209558)
For #209511
2024-04-04 10:45:57 -07:00
Michael Lively 10b819f5a1 Fix typo from old code (#209557)
fix long standing typo
2024-04-04 19:40:33 +02:00
Matt Bierner 7a623b31fb Fix frontmatter line map (#209556)
Fixes #209267
2024-04-04 19:39:21 +02:00
Matt Bierner 125e308ea4 Bump @typescript-eslint versions (#209516)
6.x is the latest release that supports our current node target
2024-04-04 10:36:59 -07:00
Matt Bierner ae91138701 Add eslint rule for potentially unsafe disposable patterns (#209555)
`DisposableStore`/`MutableDisposable` properties should almost always be `readonly`. Otherwise it's easy to accidentally overwrite the property and leak the previous value. This commonly happens with code such as:

```ts
class Foo {
     private disposables = new DisposableStore();

     bar() {
         this.disposables = new DisposableStore(); // leaks old values
         ...
     }
```

This change adds an eslint rule to enforce this and adopts `readonly` for the caught cases. I only needed to add 2 suppression comments, which seems like an acceptable tradeoff for helping catch a common mistake
2024-04-04 10:34:45 -07:00
Sandeep Somavarapu b4378dfa1d fix #207813 (#209553) 2024-04-04 18:19:58 +02:00
Megan Rogge a32d57b598 Merge pull request #209550 from microsoft/merogge/descrs
improve command descriptions
2024-04-04 09:10:33 -07:00
Daniel Imms cb6942bf39 Merge pull request #209548 from microsoft/tyriar/api_todos
Add todos for shellIntegration API from API sync
2024-04-04 08:59:33 -07:00
Megan Rogge f4806a28df Update src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatActions.ts 2024-04-04 08:52:05 -07:00
meganrogge 77fdf27159 add discard description 2024-04-04 08:50:56 -07:00
Daniel Imms e16e41ea3c Add todos for shellIntegration API from API sync
Part of #145234
2024-04-04 08:42:17 -07:00
Megan Rogge 8cf1fbea8d Merge pull request #209546 from microsoft/merogge/accessibility-cleanup
accessibility contrib/config renaming, cleanup
2024-04-04 08:38:58 -07:00
meganrogge 7ac815275d more descriptions 2024-04-04 08:34:59 -07:00
meganrogge 86c3607799 accessibility signals 2024-04-04 08:28:02 -07:00
meganrogge 32b24760fa add scope 2024-04-04 07:59:08 -07:00
meganrogge 50b145a240 Merge branch 'main' into merogge/accessibility-cleanup 2024-04-04 07:41:37 -07:00
meganrogge 9713bb3f13 add accessibility signals to l8n 2024-04-04 07:36:04 -07:00
meganrogge 68257f61f7 rename, move things around 2024-04-04 07:32:43 -07:00
Megan Rogge 3f0dbfe658 Merge pull request #209544 from microsoft/merogge/cue-fix
fix accessibility signal resource scope
2024-04-04 07:29:03 -07:00
meganrogge 2b010cf72a move audio cue config to new file 2024-04-04 07:21:28 -07:00