Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKirill Osenkov <github@osenkov.com>2018-08-16 03:14:07 +0300
committerKirill Osenkov <github@osenkov.com>2018-08-16 03:14:07 +0300
commit0696080a86590ed2d9f5369b798fe6ca73c66d30 (patch)
tree49bd76c60e26f7e5241e634b0016ed7e9bb50bed /src
parent2cb48739a2f13b19ba77b01c9f92b8482d442195 (diff)
Disable QuickInfo.
Diffstat (limited to 'src')
-rw-r--r--src/Language/Impl/Language/QuickInfo/QuickInfoTextViewCreationListener.cs4
-rw-r--r--src/Language/Impl/Language/QuickInfo/SquiggleQuickInfoSourceProvider.cs4
2 files changed, 6 insertions, 2 deletions
diff --git a/src/Language/Impl/Language/QuickInfo/QuickInfoTextViewCreationListener.cs b/src/Language/Impl/Language/QuickInfo/QuickInfoTextViewCreationListener.cs
index c387e97..36dd27d 100644
--- a/src/Language/Impl/Language/QuickInfo/QuickInfoTextViewCreationListener.cs
+++ b/src/Language/Impl/Language/QuickInfo/QuickInfoTextViewCreationListener.cs
@@ -6,7 +6,9 @@
using Microsoft.VisualStudio.Threading;
using Microsoft.VisualStudio.Utilities;
- [Export(typeof(ITextViewCreationListener))]
+ // TODO: re-enable this as part of
+ // https://devdiv.visualstudio.com/DevDiv/Xamarin%20VS%20for%20Mac/_workitems/edit/617427
+ // [Export(typeof(ITextViewCreationListener))]
[ContentType("any")]
[TextViewRole(PredefinedTextViewRoles.Editable)]
[TextViewRole(PredefinedTextViewRoles.EmbeddedPeekTextView)]
diff --git a/src/Language/Impl/Language/QuickInfo/SquiggleQuickInfoSourceProvider.cs b/src/Language/Impl/Language/QuickInfo/SquiggleQuickInfoSourceProvider.cs
index 668c037..6241274 100644
--- a/src/Language/Impl/Language/QuickInfo/SquiggleQuickInfoSourceProvider.cs
+++ b/src/Language/Impl/Language/QuickInfo/SquiggleQuickInfoSourceProvider.cs
@@ -6,7 +6,9 @@
using Microsoft.VisualStudio.Threading;
using Microsoft.VisualStudio.Utilities;
- [Export(typeof(IAsyncQuickInfoSourceProvider))]
+ // TODO: re-enable this as part of
+ // https://devdiv.visualstudio.com/DevDiv/Xamarin%20VS%20for%20Mac/_workitems/edit/617427
+ // [Export(typeof(IAsyncQuickInfoSourceProvider))]
[Name("squiggle")]
[Order]
[ContentType("any")]