Commit graph

62998 commits

Author SHA1 Message Date
Hyun Sick Moon
3b155031dc
fix typo (#93291) 2020-03-24 09:03:01 -07:00
SteVen Batten
7a5b90c74c enable panel contribution 2020-03-24 11:20:13 -04:00
Martin Aeschlimann
cdd0132f7e [themes] Icon theme is wiped out from settings.json when running vscode with --disable-extensions. Fixes #93157 2020-03-24 15:13:24 +01:00
Martin Aeschlimann
cce424cc12 resources: use with in comparison key 2020-03-24 14:58:13 +01:00
SteVen Batten
321d171b5f repair debug console theming 2020-03-24 09:52:42 -04:00
Johannes Rieken
ea2c961eaa use path.win32.* and fsPath when dealing with file-uris on windows, https://github.com/microsoft/vscode/issues/90208 2020-03-24 14:22:09 +01:00
Sandeep Somavarapu
7a20db3ee4 #92516 move sync cli category 2020-03-24 13:55:44 +01:00
Sandeep Somavarapu
aee8005bfe use sync store from settings if provided 2020-03-24 13:54:39 +01:00
Johannes Rieken
6efe197957 fix test failure 2020-03-24 13:36:31 +01:00
Sandeep Somavarapu
ffb0e130df fix warnings in tests 2020-03-24 13:15:51 +01:00
Isidor Nikolic
e97426ba2b
Merge pull request #93125 from piraces/fix-history-extra-navigations
Fix history entries navigation taking extra navigates in debug console
2020-03-24 12:41:47 +01:00
Sandeep Somavarapu
7d038b6ea4 Fix #93295 2020-03-24 12:16:31 +01:00
Johannes Rieken
54b31f4862 Call it joinPath, add tests, don't reuse the implemention from resources.ts, https://github.com/microsoft/vscode/issues/90208 2020-03-24 12:10:22 +01:00
isidor
464ef8c1b3 viewsWelcomeContribution: remove proposed API check
fixes #89080
2020-03-24 11:12:57 +01:00
Benjamin Pasero
21431f6117 quick access - cleanup API for quick input 2020-03-24 10:13:45 +01:00
isidor
ebe1981e8e fixes #92333 2020-03-24 10:10:08 +01:00
Benjamin Pasero
44da505842 quick access - properly wire up disposables 2020-03-24 10:00:02 +01:00
Benjamin Pasero
b78d88303b quick access - fix comparing via picker 2020-03-24 09:09:31 +01:00
Benjamin Pasero
eaf60f88ba quick access - support to auto activate LAST 2020-03-24 09:02:04 +01:00
Benjamin Pasero
4f0b2b0689 tests - fix smoketests for new quick open impl 2020-03-24 08:39:53 +01:00
Benjamin Pasero
80b0200dea argv help 💄 2020-03-24 08:01:20 +01:00
SteVen Batten
073a24de05 refs #92786 allow terminal move 2020-03-23 21:15:08 -04:00
SteVen Batten
205f7bbc0d remove unused import 2020-03-23 21:05:06 -04:00
SteVen Batten
715e513eef refs #92786 allow repl move 2020-03-23 21:01:45 -04:00
rebornix
1d6972ebb4 Cell Runnable 2020-03-23 17:46:05 -07:00
SteVen Batten
630911081a remove unused import 2020-03-23 20:13:56 -04:00
SteVen Batten
b62418dfcf markers views should request background color 2020-03-23 20:12:12 -04:00
SteVen Batten
53054c23b5 refs #92786 2020-03-23 20:01:49 -04:00
rebornix
e48cd83bd1 honor document default cell editable metadata 2020-03-23 16:58:33 -07:00
SteVen Batten
bb78971197 fixes #93114 2020-03-23 19:51:01 -04:00
SteVen Batten
8b3ab189a7 #93038 2020-03-23 19:46:45 -04:00
rebornix
deddc655bd Event Dispatcher 2020-03-23 16:00:13 -07:00
rebornix
343fdecf0f notebook metadata sync between ext and main 2020-03-23 16:00:01 -07:00
Matt Bierner
ebb2030e1d Fixing some index bugs with edits api for custom editors 2020-03-23 14:54:47 -07:00
Matt Bierner
84b5597e3e Add extra guard for accessing property
Fixes #93219
2020-03-23 14:54:47 -07:00
Eric Amodio
c1849cf39b Fixes #93252 2020-03-23 17:42:46 -04:00
Eric Amodio
fb87c6cbf1 Closes #92421 - view level progress 2020-03-23 17:27:07 -04:00
Eric Amodio
9c1e26890c Fixes #91377 - save previous ref 2020-03-23 17:15:41 -04:00
Eric Amodio
a5987ce853 Fixes focus issue on click 2020-03-23 17:15:18 -04:00
Eric Amodio
a4adeb8e1f Removes dead code 2020-03-23 17:04:03 -04:00
Eric Amodio
3aab025eae Fixes #91382 - hides duplicate timestamps 2020-03-23 17:02:15 -04:00
Eric Amodio
928bc1332e Adds settings and webview panel to Schemas 2020-03-23 17:02:15 -04:00
Matt Bierner
f05a08a624
Hook custom editors up to backup restorer (#92629)
#77131

Adds custom editor restoring to the backup restorer. This PR includes:

- Adds a `vscode-custom-editor` scheme that we use internally for custom editors. This ensures that each custom editor has it's own editing history (even if another custom editor opens the same resource).

- Make the backup restorer understand how to restore  `vscode-custom-editor` editors. This is done by adding a `IEditorInputFactoryRegistry` that lets the custom editor hook into the backup restorer
2020-03-23 13:22:30 -07:00
Matt Bierner
579dab3196 Update custom editor api
For #77131

- Use a class for `CustomDocument` instead of an interface. Extensions can now add their own data to a `CustomDocument` by sublassing

- Renamed `resolveCustomDocument` to `openCustomDocument` and require that extensions return a `CustomDocument`

- Exposed edits on `CustomDocument`

- Made the third parameter of `registerCustomEditorProvider` a generic options bag that takes a `webviewOptions`
2020-03-23 13:10:49 -07:00
Matt Bierner
414fc3c7cd Remove unused type 2020-03-23 13:10:49 -07:00
Huachao Mao
9abd38f362
Fix typo of word extension (#93178) 2020-03-23 12:32:32 -07:00
piraces
07b89997d9 Change fix to avoid changing the API of the history 2020-03-23 19:47:07 +01:00
piraces
37302d7cad Fix history entries navigation taking extra navigates on start and end of history 2020-03-23 19:47:07 +01:00
Eric Amodio
604fb7637f Fixes typo 2020-03-23 13:51:26 -04:00
Eric Amodio
5391a481bc Simplifies timeline paging options 2020-03-23 13:49:44 -04:00