File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 4
4
using System . Globalization ;
5
5
using System . Linq ;
6
6
using System . Runtime . InteropServices . ComTypes ;
7
+ using System . Threading . Tasks ;
7
8
using System . Windows . Forms ;
8
9
using Microsoft . Vbe . Interop ;
9
10
using NLog ;
@@ -118,6 +119,8 @@ public void Startup()
118
119
_appMenus . Initialize ( ) ;
119
120
_appMenus . Localize ( ) ;
120
121
122
+ Task . Delay ( 1000 ) . ContinueWith ( t => _parser . State . OnParseRequested ( this ) ) ;
123
+
121
124
_hooks . HookHotkeys ( ) ;
122
125
_hooks . Attach ( ) ;
123
126
}
Original file line number Diff line number Diff line change @@ -375,7 +375,6 @@ public bool RemoveDeclaration(Declaration declaration)
375
375
376
376
/// <summary>
377
377
/// Ensures parser state accounts for built-in declarations.
378
- /// This method has no effect if built-in declarations have already been loaded.
379
378
/// </summary>
380
379
/// <summary>
381
380
/// Requests reparse for specified component.
You can’t perform that action at this time.
0 commit comments