If you're a developer nowadays chances are high that you're using VSCode as your IDE of choice.
It's my favourite IDE for web development, but I also use it for C++ EOSIO smart contract development because it's free, unlike the CLion alternative.
Per default, there is no IntelliSense (code completion, jump to class definitions, etc.) for EOSIO smart contract development which is a big productivity killer.
However, there's an easy way to enable it for your VSCode workspace.
CMD + SHIFT + P => C/C++: Edit Configuration (UI)
eosio.cdt include directories and optionally your whole worksapce folder.uint128_t. (When I didn't add this I encountered error lines below each uint128_t.)After reloading VSCode, you should be able to see the definitions when pressing CMD + clicking on expression:
Originally published at https://cmichel.io/eosio-c-intelli-sense-in-vs-code/