Free IntelliSense for C++ in Visual Studio - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T06:39:17Z http://stackoverflow.com/feeds/question/511659 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/511659/free-intellisense-for-c-in-visual-studio 0 Free IntelliSense for C++ in Visual Studio Naveen 2009-02-04T14:45:24Z 2009-03-23T23:05:19Z <p>Does anybody here know any free IntelliSense tool available for C++ which is atleast 50% of the features of <a href="http://www.wholetomato.com/" rel="nofollow">Visual Assist X</a> (Which of course is not free)? Basically I want my intellisense to work without loading my full workspace/solution? I had seen Visual Assist and it provides this feature.</p> http://stackoverflow.com/questions/511659/free-intellisense-for-c-in-visual-studio/511690#511690 5 Answer by Marcin Gil for Free IntelliSense for C++ in Visual Studio Marcin Gil 2009-02-04T14:54:43Z 2009-02-04T14:54:43Z <p>Support these guys as they spent considerable time writing this excellent tool and just buy it.</p> <p>For free alternatives you can check <a href="http://ctags.sourceforge.net/" rel="nofollow">CTags</a> and a <a href="http://www.codeproject.com/KB/macros/dstags.aspx" rel="nofollow">plugin for VS</a>.</p> http://stackoverflow.com/questions/511659/free-intellisense-for-c-in-visual-studio/675565#675565 0 Answer by Ger ODonnell for Free IntelliSense for C++ in Visual Studio Ger ODonnell 2009-03-23T23:05:19Z 2009-03-23T23:05:19Z <p>Paste this into the EnvironmentEvents module in your Visual Studio macros:</p> <pre><code>Dim curWord As String Private Sub TextDocumentKeyPressEvents_AfterKeyPress(ByVal Keypress As String, ByVal Selection As EnvDTE.TextSelection, ByVal InStatementCompletion As Boolean) Handles TextDocumentKeyPressEvents.AfterKeyPress If (InStr("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_", Keypress)) Then curWord = curWord + Keypress If (curWord.Length &gt; 2) Then 'AutoCompleteFromFile() curWord = "" DTE.ExecuteCommand("Edit.CompleteWord") End If Else curWord = "" End If End Sub </code></pre>