Commit Graph

43795 Commits

Author SHA1 Message Date
Joao Moreno
a2deea6c19 snap package version should be commit ID 2018-12-19 10:03:03 +01:00
Joao Moreno
d2024ca376 add async data tree test to strict null checks 2018-12-19 08:58:49 +01:00
Joao Moreno
d315b31c6b remove svg 2018-12-19 08:50:05 +01:00
João Moreno
034ff33eb4 Merge pull request #64305 from Microsoft/misolori/open-change-icons
Update "Open changes" icons to better reflect diff changes
2018-12-19 08:43:09 +01:00
Joao Moreno
f071a3ecef fix build 2018-12-19 08:34:50 +01:00
Benjamin Pasero
187998c50b docs - add note about backslash in patterns 2018-12-19 07:27:14 +01:00
Benjamin Pasero
bbe2fdb262 fix #64999 2018-12-19 07:25:04 +01:00
Benjamin Pasero
3a6cd5786d fix #65336 2018-12-19 06:30:29 +01:00
Matt Bierner
d28f0fe8e4 Make sure we still call onDidBlockSvg 2018-12-18 17:24:00 -08:00
Matt Bierner
72e032c398 Strict null check 🎅 2018-12-18 17:24:00 -08:00
Matt Bierner
b917025b3a Extract svg blocker 2018-12-18 17:24:00 -08:00
Matt Bierner
0321c9c9d5 Formatting 2018-12-18 17:24:00 -08:00
Agustín Rodríguez
6bbf506d83 Prevent 'Report Issue' and 'Process Explorer' windows to be opened in fullscreen mode, fixes #64306 (#64839) 2018-12-18 16:46:54 -08:00
Rob Lourens
cf4780de77 Bump node-debug2 2018-12-18 16:44:42 -08:00
Daniel Imms
6b3f791c43 Fix test error 2018-12-18 16:27:18 -08:00
Matt Bierner
762fcc3635 Make sure Dispose.register does not allow registering new disposables after the base has been disposed
`register` can be called after `dispose` in some race conditions, especially when dealing with events. Previously in this case, `register` would continue to hold onto the newly registered objects and they would never be properly disposed. With this change, we now dispose of newly registered objects immediately and print a warning if the base has already been disposed
2018-12-18 16:16:41 -08:00
Matt Bierner
e83df31481 Extract WebviewProtocolRegister 2018-12-18 16:16:41 -08:00
Matt Bierner
fee06ee9b4 Extract handleInnerKeydown 2018-12-18 16:16:41 -08:00
Matt Bierner
e3cd71c46c Use .body to get body element 2018-12-18 16:16:41 -08:00
Rob Lourens
50f1bbb049 useSplitJSON description accuracy 2018-12-18 15:26:15 -08:00
Rob Lourens
212b685475 Bring split JSON editor back behind a setting #64932 2018-12-18 15:22:25 -08:00
Rachel Macfarlane
c5c15eb75f Add document parameter to draft methods on comments provider 2018-12-18 14:57:50 -08:00
Matt Bierner
26084201c8 Use polling to track focus in webview
Fixes #64729

Polling is the only relaible way I could find to track focus for webviews that may also include nested iframes
2018-12-18 14:50:11 -08:00
Rob Lourens
84beca8c7a Search tree - merge cleanup 2018-12-18 13:03:15 -08:00
Rob Lourens
29a5556c93 Search tree - Fix crash when removing some elements 2018-12-18 13:03:15 -08:00
Rob Lourens
6f634727f1 Search tree - use accessibility provider 2018-12-18 13:03:15 -08:00
Rob Lourens
7bb74f74ca Search tree - hook up context menu 2018-12-18 13:03:15 -08:00
Rob Lourens
a92fa200c6 Search tree - use identity provider, fix refresh with added/removed 2018-12-18 13:03:15 -08:00
Rob Lourens
f4dd1d1351 Search tree - fix tests and match actions 2018-12-18 13:03:15 -08:00
Rob Lourens
edd6891f3d Search tree - hook up collapseResults setting 2018-12-18 13:03:15 -08:00
Rob Lourens
50c6093fed Search tree - only show folder element when more than one folder has results 2018-12-18 13:03:15 -08:00
Rob Lourens
0dd46dd152 Search tree opening items - #64836 2018-12-18 13:03:15 -08:00
Rob Lourens
3ccda58df8 Search tree - build fixes 2018-12-18 13:03:15 -08:00
Rob Lourens
5163fd77ae Move search to new tree 2018-12-18 13:03:15 -08:00
Sandeep Somavarapu
841cc254c3 strict null check: enable markerPanelActions 2018-12-18 21:00:03 +01:00
Sandeep Somavarapu
22571196ea #1927
- Add toggle action per problem
- Remove global toggle action
- Add commands to show multi or single line
2018-12-18 21:00:03 +01:00
Matt Bierner
35cd14ec27 Don't hold on to this in _ready promise 2018-12-18 11:52:08 -08:00
Matt Bierner
2da55015e7 Use prepend instead of insertBefore
Prepend should be supported by modern browsers
2018-12-18 11:52:07 -08:00
Matt Bierner
33821cba7c Extract getDefaultCss 2018-12-18 11:52:07 -08:00
Matt Bierner
e8ec71a00d Prefer let to var 2018-12-18 11:52:07 -08:00
Matt Bierner
d5dc39e8f0 Remove some extra any casts 2018-12-18 11:52:07 -08:00
Daniel Imms
2b76b62051 vscode-xterm@3.10.0-beta4
- Remove AUTHORS file
- Support lineHeight in demo
- Remove jsdoc dependency
- Layering refactors
- Buffer optimizations
- Whitespace/null cell differentiation
- Parser OSC string optimization
- Add missing break to setOption code
- Fix mouse coords when position: fixed is used
- Fix addon typings error
- Dispose atlas when no terminals use it
- Find as you type/incremental searching (+ line cache)

Fixes #65318
2018-12-18 11:03:05 -08:00
Sandeep Somavarapu
cd093cecd0 Move MarkersViewState to markersTreeViewer and remove markersPanelActions from strict null checks 2018-12-18 19:29:17 +01:00
Benjamin Pasero
d8aa59993f perf - speed up quick open scorer by ~10%
Move some computations out of the inner loop into the outer loop to avoid repeated computation.
2018-12-18 19:18:47 +01:00
Rachel Macfarlane
13921a8eca Properly dispose of deleted comment zone widgets on comment update event 2018-12-18 09:34:56 -08:00
Sandeep Somavarapu
58477d9a3b Store the multiline state 2018-12-18 18:21:41 +01:00
Sandeep Somavarapu
a44ca00892 #1927 Global action to toggle multi line messages 2018-12-18 17:51:00 +01:00
Johannes Rieken
ad0bf305a1 remove unused telemetry 2018-12-18 17:34:50 +01:00
Alexander
da981b35c9 Enable strict null checking for Comparers test (#65301) 2018-12-18 17:31:36 +01:00
Johannes Rieken
b716526364 fix #31372 2018-12-18 17:18:42 +01:00