Why does intellisense and code suggestion stop working when Visual Studio is open?

I should note that I haven’t had the issue since upgrading my RAM. I can’t confirm if it’s related but the problem was prevalent when I had 2-4GB RAM. No problems since going to 8 and 16GB. If only one file/window appears to be affected, close and reopen that file. If that doesn’t work, try … Read more

How to get VS 2010 to recognize certain CUDA functions

You could create a dummy #include file of the following form: #pragma once #ifdef __INTELLISENSE__ void __syncthreads(); … #endif This should hide the fake prototypes from the CUDA and Visual C++ compilers, but still make them visible to IntelliSense. Source for __INTELLISENSE__ macro: http://blogs.msdn.com/b/vcblog/archive/2011/03/29/10146895.aspx

How to disable IntelliSense in VS Code for Markdown?

IntelliSense suggestions in VS Code can be configured globally or per each workspace and as of 1.9 per file-type (language), using the editor.quickSuggestions, editor.acceptSuggestionOnEnter and editor.suggestOnTriggerCharacters settings. // Controls if quick suggestions should show up or not while typing “editor.quickSuggestions”: true, Since VSCode 1.11, the quickSuggestions setting allows more fine-grained control over quick suggestions. However, … Read more

Python and Intellisense

This blog entry explains setting Vim up as a Python IDE, he covers Intellisense-like functionality: (source: dispatched.ch) This is standard in Vim 7. There are a number of other very useful plugins for python development in Vim, such as Pyflakes which checks code on the fly and Python_fn.vim which provides functionality for manipulating python indentation … Read more