Daniel Imms
275135a7e0
Prefer const
2018-06-02 16:41:45 -07:00
Daniel Imms
20f9bf129a
Implement start of terminal renderers
...
Part of #46192
2018-06-02 16:35:49 -07:00
Joao Moreno
9a599483f6
Merge branch 'master' into grid
2018-06-01 16:16:57 +02:00
Johannes Rieken
18104488f5
one more time, fix #50321
2018-06-01 12:54:01 +02:00
Joao Moreno
18493986cf
Merge branch 'master' into grid
2018-05-31 14:18:36 +02:00
Dirk Baeumer
84984608fe
Fixes #50858 : Task api is still marked as proposed
2018-05-31 11:59:01 +02:00
Matt Bierner
df7f125f35
Moving webview api back to proposed for more polishing
...
#49022
2018-05-30 22:53:56 -07:00
Benjamin Pasero
62af395b99
Merge branch 'master' into ben/editor
2018-05-31 06:32:25 +02:00
Sandeep Somavarapu
93f10d7fbf
Fix #48225
2018-05-30 17:02:46 +02:00
Johannes Rieken
c562bd257d
fix #50207
2018-05-30 14:48:33 +02:00
Benjamin Pasero
7acb20cf8d
Merge branch 'master' into ben/editor
2018-05-30 12:55:22 +02:00
Sandeep Somavarapu
6978d9e498
Fix #50663
2018-05-30 11:01:33 +02:00
Benjamin Pasero
8511b47a7b
Merge branch 'master' into ben/editor
2018-05-30 07:02:42 +02:00
Johannes Rieken
f5300ced7f
fix #50321
2018-05-29 16:06:08 +02:00
Benjamin Pasero
4320ec95b6
Merge branch 'master' into ben/editor
2018-05-29 06:31:47 +02:00
Andre Weinand
4426eb725a
eliminate code duplication; use resolveWorkspaceFolder()
2018-05-28 18:49:19 +02:00
Benjamin Pasero
08aa435eb3
Merge branch 'master' into ben/editor
2018-05-28 18:07:21 +02:00
Andre Weinand
0dd96174c2
cleanup integrated terminal support for debugging
2018-05-28 14:22:30 +02:00
Benjamin Pasero
40c0aba09b
Merge branch 'master' into ben/editor
2018-05-28 11:21:42 +02:00
Christof Marti
0662a71dfb
Remove first cut of QuickInput API ( #49340 )
2018-05-28 09:30:39 +02:00
Dirk Baeumer
86feb84737
Make variable resolving for tasks async
2018-05-28 08:57:13 +02:00
Benjamin Pasero
e41acb7f23
Merge branch 'master' into ben/editor
2018-05-27 10:13:23 +02:00
Rob Lourens
4eaf58348b
Fixes and 💄 around maxResults for search providers
2018-05-26 12:19:40 -07:00
Benjamin Pasero
31694f7a73
Merge branch 'master' into ben/editor
2018-05-26 10:40:26 +02:00
Rob Lourens
a015dc90f9
EH search - fix search providers using non-file schemes
2018-05-25 20:06:58 -07:00
Matt Bierner
0afe30e9a3
Move webview serializer out of proposed
2018-05-25 12:09:59 -07:00
Benjamin Pasero
b16ec92aa1
Merge branch 'master' into ben/editor
2018-05-25 06:32:30 +02:00
Dirk Baeumer
e0ce881040
First cut of #50416 : Add support that FileSystemProviders can control the URI of a generated problem marker
2018-05-24 22:19:14 +02:00
Benjamin Pasero
57b753836a
Merge branch 'master' into ben/editor
2018-05-23 12:31:17 +02:00
Sandeep Somavarapu
8fbfcb1ce1
Fix #50143
2018-05-23 12:04:03 +02:00
Benjamin Pasero
026fc297fb
grid - open editors in active group when no ViewColumn is provided
2018-05-22 11:25:02 +02:00
Benjamin Pasero
2bfb2763fd
grid - 💄 for viewcolumn conversion
2018-05-22 08:53:28 +02:00
Benjamin Pasero
f0abfa346e
Merge branch 'master' into ben/editor
2018-05-22 07:21:24 +02:00
Matt Bierner
0a0d3d5e45
Add code action trigger to proposed API
...
#50248
2018-05-21 16:19:10 -07:00
Matt Bierner
ff5f422dda
Prototype update import paths on file rename/move for JS/TS ( #50074 )
...
* Prototype of updating paths on rename file
* Fix apply edits
* Hook up to normal rename
* Fix unit test
* Remove timeout
* Adding prompt
* Bail early if user has set 'never'
2018-05-21 13:26:24 -07:00
Matt Bierner
2cfe96f451
Use member shorthand for more adapters
2018-05-21 11:54:30 -07:00
Rob Lourens
3038f429da
Fix #50175
2018-05-21 10:28:42 -07:00
Rob Lourens
d0b06a638a
Change EH search back to use URIs between EH and renderer process
2018-05-20 22:42:26 -07:00
Benjamin Pasero
249da81b04
grid - move EditorPosition to exthost
2018-05-20 14:09:00 +02:00
Rob Lourens
912fff91ac
Change File search result API to only return a string relative path to the search folder
2018-05-17 21:51:10 -07:00
Rob Lourens
707a20f4af
Change TextSearchResult API to only return a string relative path to the search folder
2018-05-17 21:25:47 -07:00
Matt Bierner
8bb27cd255
Add unused diagnostic subtype ( #49646 )
...
* Add unused diagnostic subtype
Fixes #15710
Adds a new `DiagnosticTag` class that provide additional information about a diagnostic. Introduce `DiagnosticTag.Unnecessary` to mark when a diagnostic is for unused / unnecessary code
The design comes from Rosyln's diagnostic object and allows us to modify how a diagnostic is rendered without changing its serverity.
Hooks up JS and TS to use this new tag. This is controlled by the `javascript.showUnused.enabled` setting which is enabled by default
- Introduce a new diagnostic severity for unused.
However, using this approach, if a user sets `noUnusedLocals` in their `tsconfig.json`, the resulting diagnostic could only show the squiggly OR be grayed out. Using `customTags` allows us to support both graying out and showing the squiggly
- Custom JS/TS implementation using decorators
Not themable. We want a standard experience across languages.
* - Move to proposed
- Use numeric enum
2018-05-17 15:43:59 -07:00
Rob Lourens
a9d3a477dd
EH search - remove slow ES5 async/await from inner loop
2018-05-17 11:56:05 -07:00
Rob Lourens
9b4656e6bc
EH search - send limitHit result back to frontend
2018-05-17 11:56:05 -07:00
Rob Lourens
cf06508603
EH search - implement max results for text search on the ExtHostSearch side
2018-05-17 11:56:05 -07:00
Sandeep Somavarapu
fbf1fefaae
Merge pull request #49970 from Microsoft/sandy081/treeViewApi
...
Add following to TreeView
2018-05-17 16:48:45 +02:00
Sandeep Somavarapu
58064599c5
Call selected elements - selection
2018-05-17 16:48:09 +02:00
Sandeep Somavarapu
7ed2a1d3d7
#47262 Fix tests
2018-05-17 15:50:15 +02:00
Sandeep Somavarapu
aa54908ca2
FIx #47262
2018-05-17 12:58:33 +02:00
Johannes Rieken
cc83c18dd9
fix #49582
2018-05-17 12:00:30 +02:00