Free IntelliSense for C++ in Visual Studio - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T06:39:17Zhttp://stackoverflow.com/feeds/question/511659http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/511659/free-intellisense-for-c-in-visual-studio0Free IntelliSense for C++ in Visual StudioNaveen2009-02-04T14:45:24Z2009-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#5116905Answer by Marcin Gil for Free IntelliSense for C++ in Visual StudioMarcin Gil2009-02-04T14:54:43Z2009-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#6755650Answer by Ger ODonnell for Free IntelliSense for C++ in Visual StudioGer ODonnell2009-03-23T23:05:19Z2009-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 > 2) Then
'AutoCompleteFromFile()
curWord = ""
DTE.ExecuteCommand("Edit.CompleteWord")
End If
Else
curWord = ""
End If
End Sub
</code></pre>