Update CodeCompletionActions.cs (#3323)
Показ Code Completion Window по Ctrl-Space, если курсор находится сразу после точки (как сделано в Win версии). Текущее поведение - после точки ccw не показывать, только если курсор переместить на несколько символов вправо от точки.
This commit is contained in:
parent
cc266b3863
commit
89e02b504e
|
|
@ -691,7 +691,7 @@ namespace VisualPascalABC
|
|||
completionDataProvider.preSelection = CodeCompletion.CodeCompletionController.CurrentParser.LanguageInformation.FindPattern(off, text, out is_pattern);
|
||||
|
||||
if (!is_pattern && off > 0 && text[off - 1] == '.')
|
||||
key = '$';
|
||||
key = '_';//was '$'
|
||||
codeCompletionWindow = PABCNETCodeCompletionWindow.ShowCompletionWindow(
|
||||
VisualPABCSingleton.MainForm, // The parent window for the completion window
|
||||
textArea.MotherTextEditorControl, // The text editor to show the window for
|
||||
|
|
|
|||
Loading…
Reference in a new issue