Skip to main content

15 docs tagged with "Tools"

View All Tags

clangd

If you are familiar with IntelliSense (which is installed by default in Visual Studio and Visual Studio Code), clangd is the same kind of thing, but better (less laggy, more complete). It will provide autocompletion, suggestions, detect bugs, etc.

Markdown

Markdown is an amazing markup language. Its main strength is its simplicity, and the other one is its omnipresence.

Write debug tools

When you write test code to help you develop a feature, don't throw that code away once you are done with your feature! This code will be helpful again one day, when you need to debug something or change the feature. Put an on/off option onto it, hide it behind a #if DEBUG, but put an option in your UI to re-enable it so that it is always close at hand when you will need it.