Skip to content
This repository was archived by the owner on Oct 4, 2021. It is now read-only.

Commit b4a3753

Browse files
committed
[Debugger] Allow completions to be completed on tab
1 parent bb2d51e commit b4a3753

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/DebuggerAsyncCompletionSource.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ public CommitResult TryCommit (IAsyncCompletionSession session, ITextBuffer buff
211211
}
212212

213213
// Note: Hitting Return should *always* complete the current selection, but other typed chars require examining context...
214-
if (typedChar != '\0' && typedChar != '\n') {
214+
if (typedChar != '\0' && typedChar != '\n' && typedChar != '\t') {
215215
var text = buffer.CurrentSnapshot.GetText ();
216216
var span = DebuggerAsyncCompletionSource.GetWordSpan (text, text.Length);
217217

0 commit comments

Comments
 (0)