mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 21:38:52 +00:00
- VS crashes completely without VIX API - now just shows error message in Output window. - Colours of text in Cosmos windows invisble in dark theme. Tenp fix: Bg colour forced to light, - XSharo project referencing outdated libraries. Slowly fixing the debugger...
37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Microsoft.VisualStudio;
|
|
using Microsoft.VisualStudio.Package;
|
|
using Microsoft.VisualStudio.TextManager.Interop;
|
|
using Microsoft.VisualStudio.OLE.Interop;
|
|
|
|
namespace Cosmos.VS.XSharp {
|
|
internal class Parser : AuthoringScope {
|
|
public override string GetDataTipText(int line, int col, out TextSpan span) {
|
|
span = new TextSpan();
|
|
return null;
|
|
}
|
|
|
|
public override Declarations GetDeclarations(IVsTextView view, int line, int col, TokenInfo info, ParseReason reason) {
|
|
return null;
|
|
}
|
|
|
|
|
|
public override string Goto(VSConstants.VSStd97CmdID cmd, IVsTextView textView, int line, int col, out TextSpan span)
|
|
{
|
|
span = new TextSpan();
|
|
return null;
|
|
}
|
|
//public override string Goto(VSConstants.VSStd97CmdID cmd, IVsTextView textView, int line, int col, out TextSpan span)
|
|
//{
|
|
// span = new TextSpan();
|
|
// return null;
|
|
//}
|
|
|
|
public override Methods GetMethods(int line, int col, string name) {
|
|
return null;
|
|
}
|
|
}
|
|
}
|