VerilogLanguageExtension
                                
                                 VerilogLanguageExtension copied to clipboard
                                
                                    VerilogLanguageExtension copied to clipboard
                            
                            
                            
                        Verilog Language Extension for Visual Studio
VSIX installer responds with: 2022-12-14 12:25:11 PM - Found installed product - Visual Studio Community 2022 2022-12-14 12:25:12 PM - VSIXInstaller.NoApplicableSKUsException: This extension is not installable on any currently installed...

When creating project in alternate, not-yet-existing user & directory. VS2017: 
VS2017:  
as noted in https://github.com/gojimmypi/VerilogLanguageExtension/issues/21#issuecomment-620237275 - performance on large files is really poor due to excessive re-parsing of the entire buffer,
see [picorv32.v line 532](https://github.com/gojimmypi/VerilogLanguageExtension/blob/master/TestFiles/picorv32.v#L532) note missing colorization after single quote: 
When a new file is loaded, the declaration hover text for variables is not visible until a key is pressed and the file is re-parsed. Variable hover text should be...
although initially working, somehow this got lost:  see [Intellisense/VerilogQuickInfoSource.cs line 203](https://github.com/gojimmypi/VerilogLanguageExtension/blob/057249c9a33ca0b37be6001d51dc68c3d4d27150/Intellisense/VerilogQuickInfoSource.cs#L203)
current logic does not properly distinguish comment chars: `//` and `/*` and `*/` from division and multiplication operators as noted in #10. Workaround: pad with spaces. see [VerilogHelperFunctions.cs : IsDelimiter()](https://github.com/gojimmypi/VerilogLanguageExtension/blob/19b3ee1c7eaa582eaf06b5161d96896339d81854/Globals/VerilogHelperFunctions.cs#L44)
for example, the second line here should have the `ctr_width` declaration as hover text: value `ctr_width = 24`: ``` localparam ctr_width = 24; localparam ctr_max = 2**ctr_width - 1; ```