Commit Graph
61921 Commits
Author SHA1 Message Date
Eric Amodio 90df2d09f4 Adds Open Timeline command to explorer files
Adds follow/unfollow actions to the timeline view
Reworks timeline view commands
2020-03-03 15:04:13 -05:00
Connor Peet fb2ea118f9 debug: update js-debug-nightly to "2020.3.217" @ 2020-03-03T01:06:02.88Z 2020-03-03 10:19:59 -08:00
SteVen Batten 56d182fdec update path
fixes #87092
2020-03-03 10:06:49 -08:00
Johannes Rieken a304998c75 debt - modernize uuid and remove unused stuff 2020-03-03 17:58:06 +01:00
isidor 076c919acf fixes #91922 2020-03-03 17:06:51 +01:00
Johannes Rieken 9a9e194e41 unit test to ensure encoding of markdown uris is correct, https://github.com/microsoft/vscode/issues/90855 2020-03-03 16:55:10 +01:00
Alex Dima bc5d1b1d05 Reveal multiple cursors if they all fit in the viewport (#6995) 2020-03-03 16:51:12 +01:00
Johannes Rieken f71ee8c9e8 When generating markdown, then only decode domURIs, https://github.com/microsoft/vscode/issues/90855 2020-03-03 16:23:07 +01:00
Alex Ross 2f6da279c7 Update grammars 2020-03-03 16:20:05 +01:00
Benjamin Pasero 43ca0e3029 editors - IResourceEditor => IResourceEditorInputType
This clarifies that the type is an aggregate over inputs and not editor controls.
2020-03-03 16:17:49 +01:00
Benjamin Pasero 1340d293b2 debt - less explicit any 2020-03-03 15:45:11 +01:00
Benny Neugebauer 5bd89a2535 Fix typing for proxy auth window options (#91954) 2020-03-03 15:43:49 +01:00
Martin Aeschlimann 516d459482 extract theme configuration 2020-03-03 14:53:46 +01:00
isidor bee6deecbe views: No priroity, keep views sorted in the order they got registered 2020-03-03 14:50:55 +01:00
Johannes Rieken 5263047aeb es6 - use String#padStart and String#endsWith 2020-03-03 14:46:25 +01:00
Sandeep Somavarapu 4f6b67691d #89512 support edit setting 2020-03-03 14:13:48 +01:00
isidor 1d8df42897 fixes #91417 2020-03-03 13:22:21 +01:00
Martin Aeschlimann 67043b0f99 generalize themeStores, rename to themeRegistry 2020-03-03 12:25:49 +01:00
Benjamin Pasero 77fe565999 fix import alias to same thing 2020-03-03 12:18:45 +01:00
Benjamin Pasero b0ba712a9e editors - some JSDoc 💄 2020-03-03 12:04:53 +01:00
Johannes Rieken 4a9931ec4e treeshaker should keep [Symbol.iterator]-members because there are implict references from for-of loops 2020-03-03 11:56:12 +01:00
Benjamin Pasero a03ea07917 editors - include editor in name for inputs to make things clear 2020-03-03 11:44:46 +01:00
Johannes Rieken fd487a7ed6 fix https://github.com/microsoft/vscode/issues/91852 2020-03-03 11:02:23 +01:00
Benjamin Pasero 418d1974ca Workbench editor renames (#91943)
* IEditor => IEditorPane

* More panes:
* IVisibleEditor => IVisibleEditorPane
* ITextEditor => ITextEditorPane
* ITextDiffEditor => ITextDiffEditorPane

* imports - remove type alias

* More pane renames
* IEditorService#activeControl => activeEditorPane
* IEditorService#visibleControls => visibleEditorPanes

* More editor renames
* activeTextEditorWidget => activeTextEditorControl
* visibleTextEditorWidgets => visibleTextEditorControls
2020-03-03 10:47:50 +01:00
Johannes Rieken 6829e20b19 es6 - replace some usages of values/keys utils with destructuring 2020-03-03 10:35:19 +01:00
Johannes Rieken 18945092df es6 - replace custom LinkedList#iterator with Symbol.iterator 2020-03-03 09:46:01 +01:00
Johannes Rieken 80c67a3248 es6 - add real iterator to LinkedList 2020-03-03 09:24:26 +01:00
Johannes Rieken f8fec0012a fix https://github.com/microsoft/vscode/issues/91937 2020-03-03 09:11:14 +01:00
Johannes Rieken b52116021d sort by category only once, #91900 2020-03-03 08:45:46 +01:00
Benjamin Pasero 9ce4ebbf0f debt - fold electron environment and native environment into one 2020-03-03 08:34:59 +01:00
Matt Bierner 44c76bd3b9 Rework management of custom editor custom models
Fixes #91670

- Move model type logic out of `CustomEditorInput` and into two different implementations of `ICustomEditorModel`
- Add `CustomTextEditorModel` that owns a proper model reference to a text document. This should ensure the text document is disposed of if there are no more references to it
- Move most of the previous `CustomEditorModel` into `mainThreadWebviews` directly. This removes some of the indirection that was previously required (such as using `waitUntil`)
2020-03-02 20:27:06 -08:00
Matt Bierner ed8c0e4e1d Add explicit wait on protocol registration
Possible fix for #89038/#91506. In both cases, it looks like we try to use the protocol before it is properly registered. If this fix doesn't work, there's probably something weird going on on the electron side of things
2020-03-02 17:18:03 -08:00
Jackson Kearl 2158b1aa65 [Search Editor] Align results from the same file 2020-03-02 16:28:45 -08:00
Matt Bierner 24a5df3cc3 Type registerAndInstantiateContribution
Type out the ctor argument type. This also removes the need to explicitly type the return type
2020-03-02 16:20:36 -08:00
Matt Bierner 1b78eec1bd Remove extra overload for createInstance 2020-03-02 16:20:36 -08:00
Matt Bierner fa43b26237 More scoped try/catch 2020-03-02 16:20:36 -08:00
Matt Bierner 96d7905ca2 Remove unreachable code path 2020-03-02 16:20:36 -08:00
Matt Bierner d34c2e0ee3 Use standard for/of loop 2020-03-02 16:20:36 -08:00
Matt Bierner 0fa3af8b60 Use es6 version of methods 2020-03-02 16:20:36 -08:00
Rob Lourens b23926ba6f Merge pull request #91458 from urbas/remove-fields-from-irawfilematch
fileSearch: removed unused `size` and redundant `basename` fields from IRawFileMatch
2020-03-02 14:31:10 -08:00
Alex Dima bcc9532c1e Fixes #70490: resource is mandatory in ITextResourcePropertiesService 2020-03-02 22:23:25 +01:00
Martin Aeschlimann 6d4f8310a9 ITheme -> IColorTheme 2020-03-02 22:19:17 +01:00
Martin Aeschlimann e7f525fbad IIconTheme -> IFileIconTheme 2020-03-02 22:19:17 +01:00
Alex Dima 79280beee2 Fixes #81424: Throw when a request is made with invalid arguments 2020-03-02 22:09:19 +01:00
Rachel Macfarlane b2b488fa43 Only write config file during postinstall if process env variables are present (#91793) 2020-03-02 12:45:33 -08:00
rebornix a8c3c47555 only when row height is not set, we can check item dom node height 2020-03-02 11:58:43 -08:00
Jackson Kearl e612ed9492 Add aria alerts to F4 in serach viewlet and editor
Fixes #91705.
2020-03-02 11:56:55 -08:00
Matt Bierner a8a3f4a91e Try using a private field in Disposable
Test of #91129
2020-03-02 11:43:08 -08:00
SteVen Batten bc43ec6fd5 fixes #81630 2020-03-02 11:33:20 -08:00
SteVen Batten 5de133e5e9 refs #81360 2020-03-02 11:29:39 -08:00