gpt4 book ai didi

c# - VS 2013 SDK : Indentation issues with selected text

转载 作者:行者123 更新时间:2023-11-30 17:43:18 25 4
gpt4 key购买 nike

场景

使用 Visual Studio SDK 2013,我正在尝试开发一个简单的扩展,旨在修改选定的文本以将其包含在特定的 XML 文档标记中。


问题

我遇到的问题是在替换所选文本时,它只适用于我想避免/改进的非常具体的条件。

要进行真实比较,请注意 Visual Studio 在使用 Ctrl + K + CCtrl + 注释取消注释所选行时管理所选行缩进的方式的完美性K + U 热键,无论选择索引从哪里开始或结束,因为整个(和非空的)选定行都将被注释并保留缩进级别:

enter image description here

这是我自己面临的挑战,这是我的扩展的奇怪结果,只有当我完全选择包括左侧空格的行时它才能正常工作,否则,我会得到不想要的结果:

enter image description here


问题

VB.NetC# 中,如何改进我的代码逻辑以修复上述比较的缺陷?

缺陷基本上是我的扩展不能像 VisualStudio 那样正确处理所选行的起始空格来执行正确的文本替换,所以我得到了我提到的意想不到的结果。


代码

这是我正在使用的相关代码:

Const XmlCommentCharsVB As String = "'''"
Const XmlCommentCharsCS As String = "///"

Private Sub ModifySelectedText()

Dim viewhost As IWpfTextViewHost = Me.GetCurrentViewHost()

Dim textView As IWpfTextView = viewhost.TextView

Dim selectionSpan As VirtualSnapshotSpan = textView.Selection.StreamSelectionSpan

Dim selectedText As String = selectionSpan.SnapshotSpan.GetText

Dim language As String = textView.TextDataModel.ContentType.DisplayName

Dim xmlCommentChars As String = ""

Dim marginLength As Integer =
(From c As Char In selectedText.Split({Environment.NewLine}, StringSplitOptions.RemoveEmptyEntries).First
Take While Char.IsWhiteSpace(c)
).Count

If String.IsNullOrEmpty(selectedText) Then
Exit Sub
End If

Dim sb As New StringBuilder

Select Case language.ToUpper

Case "BASIC"
xmlCommentChars = XmlCommentCharsVB

Case "CSHARP"
xmlCommentChars = XmlCommentCharsCS

Case Else ' VC++
' Not implemented.

End Select

With sb
.AppendLine(String.Format("{0} <example> This is a code example.", xmlCommentChars))
.AppendLine(String.Format("{0} <code>", xmlCommentChars))

For Each line As String In selectedText.Split({Environment.NewLine}, StringSplitOptions.None)
sb.AppendLine(String.Format("{0} {1}", xmlCommentChars, line.Remove(0, marginLength)))
Next

.AppendLine(String.Format("{0} </code>", xmlCommentChars))
.AppendLine(String.Format("{0} </example>", xmlCommentChars))
End With

selectionSpan.Snapshot.TextBuffer.Replace(selectionSpan.SnapshotSpan, sb.ToString)

End Sub

研究

VisualStudio SDK 没有任何简单的,在 MSDN 引用中找到任何代码示例,或者让最终用户理解 SDK 的“X”成员的目的的非专家解释,真的是一场噩梦,所以我应该自己想象一下“X”成员可以做什么,并将其付诸实践,看看会发生什么……我完全不知道如何解决这个问题。

无论如何,我把目光放在 ITrackingSpan 接口(interface)的 TrackingMode 属性上,它解释了一些关于编辑器边缘的东西......但我测试了它并且似乎它不是指空白边缘。

此外,我认为一个主要问题可能是我以这种方式获取选定的文本:

viewhost.TextView.Selection.StreamSelectionSpan.SnapshotSpan.GetText

我只是得到一个字符串,但 SDK 提供了一个 ITextSnapshot 接口(interface),在 Lines 属性中包含一组字符串,但是,我试图检索所选文本的属性 Snapshot 但我总是获取当前编辑器 View 的所有文本...

最佳答案

// Get the selection object.
var viewHost = GetCurrentViewHost();
ITextSelection selection = viewHost.TextView.Selection;

// Get the start and end points of the selection.
VirtualSnapshotPoint start = selection.Start;
VirtualSnapshotPoint end = selection.End;

// Get the lines that contain the start and end points.
IWpfTextViewLine startLine =
viewHost.TextView.GetTextViewLineContainingBufferPosition(start.Position);
IWpfTextViewLine endLine =
viewHost.TextView.GetTextViewLineContainingBufferPosition(end.Position);

// Get the start and end points of the lines.
SnapshotPoint startLinePoint = startLine.Start;
SnapshotPoint endLinePoint = endLine.End;

// Create a SnapshotSpan for all text to be replaced.
SnapshotSpan span = new SnapshotSpan(startLinePoint, endLinePoint);

// Compute margin.
string[] lines = span.GetText().Split(new string[] { Environment.NewLine }, StringSplitOptions.None);
int margin = lines.Select(line =>
{
int count = 0;
while (char.IsWhiteSpace(line[count++])) ;
return --count;
}).Min();

// Construct the replacement string.
StringBuilder sb = new StringBuilder();
foreach (string line in lines)
{
sb.AppendLine(String.Format("{0}{1} {2}", new string(' ', margin), "///", line.Remove(0, margin)));
}

// Perform the replacement.
span.Snapshot.TextBuffer.Replace(span, sb.ToString());

关于c# - VS 2013 SDK : Indentation issues with selected text,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31165631/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com