Skip to content

Commit 40d4d24

Browse files
authored
Merge pull request #5118 from bclothier/FixIntellisenseQuickInfoCommand
ShowIntelliSenseCommand -> ShowQuickInfo
2 parents c45954b + 74ce9f0 commit 40d4d24

File tree

3 files changed

+2
-58
lines changed

3 files changed

+2
-58
lines changed

Rubberduck.Core/AutoComplete/SelfClosingPairs/SelfClosingPairCompletionService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public SelfClosingPairCompletionService(IShowQuickInfoCommand showQuickInfo)
1919
_showQuickInfo = showQuickInfo;
2020
}
2121

22-
public void ShowIntellisense()
22+
public void ShowQuickInfo()
2323
{
2424
_showQuickInfo.Execute();
2525
}

Rubberduck.Core/AutoComplete/SelfClosingPairs/SelfClosingPairHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public override bool Handle(AutoCompleteEventArgs e, AutoCompleteSettings settin
9191
// 1-based selection span in the code pane starts at column 1 but really encompasses the entire line.
9292
var snippetPosition = new Selection(result.SnippetPosition.StartLine, 1, result.SnippetPosition.EndLine, 1);
9393
result = new CodeString(result.Code, result.CaretPosition, snippetPosition);
94-
_scpService.ShowIntellisense();
94+
_scpService.ShowQuickInfo();
9595
e.Handled = true;
9696
return true;
9797
}

Rubberduck.Core/AutoComplete/ShowIntelliSenseCommand.cs

Lines changed: 0 additions & 56 deletions
This file was deleted.

0 commit comments

Comments
 (0)