1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

Autocomplete MRU fix for 'return'

This commit is contained in:
Brian Fiete 2020-10-14 11:46:53 -07:00
parent f9c632cbe7
commit 5e4ecade6d

View file

@ -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;