Martin Aeschlimann
61591c8585
Merge pull request #48128 from Microsoft/aeschli/foldingAPI
...
incorperate folding api feedback
2018-04-18 17:16:35 +02:00
Johannes Rieken
5292f76fcd
add (optional) copy function #47475
2018-04-18 16:23:40 +02:00
Martin Aeschlimann
a1bb202eb6
incorperate folding api feedback
2018-04-18 15:26:43 +02:00
Johannes Rieken
034b377306
first cut of explict watch, #47475
2018-04-18 12:06:16 +02:00
Matt Bierner
cdd9a731f9
Use standard 'postMessage' name
2018-04-17 16:22:44 -07:00
Daniel Imms
c8d58f428e
Pass through shutdown and resize
2018-04-17 15:43:41 -07:00
Daniel Imms
70b22b8c05
Get terminal process running on ext host
2018-04-17 15:26:09 -07:00
Matt Bierner
ea680fae1c
Update to use more consistent WebviewPanel naming
2018-04-17 10:36:56 -07:00
Daniel Imms
4f3c8a148c
Merge remote-tracking branch 'origin/master' into tyriar/terminal_process
2018-04-17 10:30:26 -07:00
Johannes Rieken
c8b4f0d05d
move proposed search api logic into its own world, #47058
2018-04-17 18:38:26 +02:00
Johannes Rieken
8c1e3a7b3c
allow to return range or range and placeholder, #7340
2018-04-17 11:40:25 +02:00
Daniel Imms
948897cd13
Start of allowing terminal process to live on extension host
2018-04-16 14:33:36 -07:00
Matt Bierner
71c09a6c4c
weview -> webview
2018-04-16 11:50:51 -07:00
Andre Weinand
dfeffb55b6
properly register debug types
2018-04-15 22:40:01 +02:00
Johannes Rieken
d4bed9b32e
add open flags to rename, #47475
2018-04-13 12:52:26 +02:00
Johannes Rieken
e7e88126ad
add FileOpenFlags, FileErrors, and a bit of polish, #47475
2018-04-13 10:17:20 +02:00
Matt Bierner
a2346c606d
Rename WebviewEditor to WebviewPanel
2018-04-12 12:06:07 -07:00
Matt Bierner
5ff2ccfc28
CodeActionProvider.providedKinds ( #47702 )
...
Adds a new optional `CodeActionProviderMetadata`. This is passed in`registerCodeActionProvider` and contains a list of`CodeActionKinds` that the provider may return. The list is used for deciding when to show the `refactor` and `source action` context menus. It is not used for filtering the returned code actions
Possibly helps address #45383
2018-04-12 11:50:21 -07:00
Daniel Imms
52267c0ba3
Merge pull request #47678 from Microsoft/tyriar/api_terminals
...
Allow extensions to access all terminals
2018-04-12 09:25:40 -07:00
André Weinand
b578dc2bd1
support to launch debuggee from EH
2018-04-12 00:56:15 +02:00
Matt Bierner
8cb7e80544
Split out Webview from WebviewEditor in proposed API ( #47370 )
...
* Split out `Webview` from `WebviewEditor` in API
**Problem**
The current proposed `Webview` interface has a few methods and properties that are very editor specific, such as `.reveal` and `.onDidChangeViewState`. These properies will not make sense if we ever allow webview to be displayed in other locations, such as in widgets
**Proposal**
Split the concepts of a `Webview` and of a `WebveiwEditor`. A webview is the html content itself. A `WebviewEditor` is an editor that displays a `Webview`
This would allow us to easily add other types of `Webview` owning objects in the future without having to document that some methods only apply when a webview is used as an editor vs as a widget
2018-04-11 11:49:02 -07:00
Johannes Rieken
1b33eb37d5
make readDirectory return string/stat-tuples, #47475
2018-04-11 12:38:39 +02:00
Daniel Imms
5d9d2d127f
Work in progress for exposing all terminals via API
2018-04-09 07:38:08 -07:00
Johannes Rieken
efcca1c0d9
files,remote - more utimes removal
2018-04-09 12:28:26 +02:00
Johannes Rieken
534d10d37d
add FileSystemProvider2 for rapid changes, add readFile/writeFile, simplify delete, #47475
2018-04-09 11:35:32 +02:00
Matt Bierner
d855ec8060
Reduce duplicate state for active webviews
2018-04-06 16:06:44 -07:00
André Weinand
4cd09ff11e
reify the DebugAdapter; fixes #45129
2018-04-06 16:42:11 +02:00
Matt Bierner
c14e30aeb4
Show error when webview restore fails
2018-04-05 19:18:55 -07:00
Matt Bierner
caee7a5789
Working on progress indicator when loading webview
2018-04-05 10:16:39 -07:00
Matt Bierner
dd21d3520a
Add webview restoration api proposal ( #46380 )
...
Adds a proposed webiew serialization api that allows webviews to be restored automatically when vscode restarts
2018-04-03 18:25:22 -07:00
Johannes Rieken
98d0b747c2
fix #46239
2018-03-29 12:16:20 +02:00
Christof Marti
ea1e57b3ab
Multi-select list ( #45589 )
2018-03-26 22:46:02 +02:00
Dirk Baeumer
6577bde536
Task query and execution polish
2018-03-26 17:04:55 +02:00
Johannes Rieken
addd44d6b8
simplified resolve rename location proposal, #7340
2018-03-26 12:45:40 +02:00
Benjamin Pasero
3d81ac21ca
Leverage notification progress support for progress API ( #45958 )
...
* Leverage notification progress support for progress API
fixes #44090
* only allow positive total/worked values
* drop total/worked in favour of percentage
* make sure to dispose CancellationTokenSource after use
* make the cancellation button optional
2018-03-21 18:06:41 +01:00
Matt Bierner
67d8eebaf4
Rename webview.show to webview.reveal
...
Make it more clear that this command only reveals an existing webview
Fixes #44580
2018-03-20 16:16:05 -07:00
Matt Bierner
ea1fed9616
Use viewType instead of uri for webviews
...
As discussed in #45994 , move from using a uri to using a viewType. The view type is shared among all webviews of a given type, such as all markdown previews
Fixes #44575
2018-03-20 14:44:10 -07:00
Dirk Baeumer
2f5061ff2d
Implements #45664 : Add API to query and execute tasks
2018-03-20 22:19:40 +01:00
Alex Dima
9077dd978d
Remove not needed userExtensionsHome
2018-03-20 17:31:47 +01:00
Alex Dima
262134cfd8
Reduce extension host IInitData
2018-03-20 16:55:38 +01:00
Johannes Rieken
ddf5ecd46c
wire up progress/cancellation, #45000
2018-03-20 14:51:23 +01:00
Johannes Rieken
73e3488685
remote - move out search provider, #45000
2018-03-20 14:51:22 +01:00
Johannes Rieken
5b8eea4b22
remote - also remove addWorkspaceFolder from protocol
2018-03-20 12:15:46 +01:00
Johannes Rieken
a116e73a94
more renames, #7340
2018-03-19 16:33:43 +01:00
Alex Dima
1a249fc4ec
Serialize vscode.DocumentSelector
2018-03-19 12:07:08 +01:00
André Weinand
f1404198c3
proposed logMessage API; fixes #45643
2018-03-16 17:08:46 +01:00
Matt Bierner
82084be1bc
Switch to use vscode-resource scheme in webviews
...
Fixes #45784
2018-03-14 11:25:40 -07:00
Martin Aeschlimann
c65b881d16
[folding] add maxRanges to folding provider request
2018-03-13 17:49:09 +01:00
Johannes Rieken
e9d92ca9a7
align names, add RenameContext-type #7340
2018-03-13 11:59:32 +01:00
Johannes Rieken
78a2f08d69
rename to RenameInformation, #7340
2018-03-02 17:28:16 +01:00