mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Autocomplete MRU fix for 'return'
This commit is contained in:
parent
f9c632cbe7
commit
5e4ecade6d
1 changed files with 3 additions and 1 deletions
|
@ -1131,7 +1131,9 @@ namespace IDE.ui
|
|||
public String mInfoFilter ~ delete _;
|
||||
public List<int32> mInvokeSrcPositions ~ delete _;
|
||||
public static int32 sAutoCompleteIdx = 1;
|
||||
public static Dictionary<String, int32> sAutoCompleteMRU = new Dictionary<String, int32>() ~ delete _;
|
||||
public static Dictionary<String, int32> sAutoCompleteMRU = new Dictionary<String, int32>() {
|
||||
(new String("return"), (int32)1)
|
||||
} ~ delete _;
|
||||
public bool mIsAsync = true;
|
||||
public bool mIsMember;
|
||||
public bool mIsFixit;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue