Replacing empty parenthesis for functions with the word 'void' to allow autocomplete to work.
This commit is contained in:
parent
bf211138f8
commit
6bf275439a
4 changed files with 34 additions and 27 deletions
|
@ -1214,7 +1214,7 @@ namespace LSLEditor
|
|||
intKeyWordLength = strKeyWord.Length;
|
||||
|
||||
if (IsRegularExpression)
|
||||
intKeyWordLength = 0; // else it would delete typed keyword
|
||||
intKeyWordLength = 0; // else it would delete the word typed so far
|
||||
|
||||
if (strKeyWord.Length == 0 || this.blnEscape)
|
||||
{
|
||||
|
@ -1258,7 +1258,7 @@ namespace LSLEditor
|
|||
InsertSelectedWord();
|
||||
*/
|
||||
|
||||
if (strKeyWord == "else") // else autocompletion enoys people!!! TODO
|
||||
if (strKeyWord == "else") // else autocompletion annoys people!!! TODO
|
||||
{
|
||||
this.TooltipListBox.Visible = false;
|
||||
this.GListBoxWindow.Visible = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue